You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
emscripten compilation is broken. for two reasons :
glDrawBuffer
GL_TEXTURE_BORDER
gcc can compile cgp as glDrawBuffer is defined in glad.h but it is not in gl3.h so this line cannot be compiled as is by emscripten.
By the way this same commit seems to break emscripten compilation because there is no GL_TEXTURE_BORDER in gl3.h. But there is one in gl32.h so if we modify this line to #include <GLES3/gl32.h> we can fix this second issue.
The text was updated successfully, but these errors were encountered:
emscripten compilation is broken. for two reasons :
glDrawBuffer
GL_TEXTURE_BORDER
gcc can compile cgp as
glDrawBuffer
is defined in glad.h but it is not in gl3.h so this line cannot be compiled as is by emscripten.By the way this same commit seems to break emscripten compilation because there is no
GL_TEXTURE_BORDER
ingl3.h
. But there is one ingl32.h
so if we modify this line to#include <GLES3/gl32.h>
we can fix this second issue.The text was updated successfully, but these errors were encountered: