Skip to content

Instantly share code, notes, and snippets.

@ToadKing
Created July 3, 2014 21:20
Show Gist options
  • Select an option

  • Save ToadKing/04960b752331e108c4e8 to your computer and use it in GitHub Desktop.

Select an option

Save ToadKing/04960b752331e108c4e8 to your computer and use it in GitHub Desktop.
/home/michael/emscripten/emcc -DSINC_LOWER_QUALITY -DHAVE_SHARED_CONTEXT -DSINGLE_THREAD -DNO_ASM -DNOSSE -DCC_resampler=mupen_CC_resampler -Dsinc_resampler=mupen_sinc_resampler -Drglgen_symbol_map=mupen_rglgen_symbol_map -Dmain_exit=mupen_main_exit -Dadler32=mupen_adler32 -Drarch_resampler_realloc=mupen_rarch_resampler_realloc -Daudio_convert_s16_to_float_C=mupen_audio_convert_s16_to_float_C -Daudio_convert_float_to_s16_C=mupen_audio_convert_float_to_s16_C -Daudio_convert_init_simd=mupen_audio_convert_init_simd -Drglgen_resolve_symbols_custom=mupen_rglgen_resolve_symbols_custom -Drglgen_resolve_symbols=mupen_rglgen_resolve_symbols -DSDL_VIDEO_OPENGL_ES2=1 -DSINC_LOWER_QUALITY -DHAVE_SHARED_CONTEXT -DSINGLE_THREAD -Iglide2gl/src/Glitch64/inc -DHAVE_OPENGLES2 -DDISABLE_3POINT -D__LIBRETRO__ -DINLINE="inline" -DM64P_PLUGIN_API -Imupen64plus-core/src -Imupen64plus-core/src/api -Ilibretro/libco -Ilibretro -DM64P_CORE_PROTOTYPES -D_ENDUSER_RELEASE -O2 -DNDEBUG -c -o glide2gl/src/Glitch64/textures.o glide2gl/src/Glitch64/textures.c
glide2gl/src/Glitch64/textures.c:235:25: error: use of undeclared identifier
'GL_INTENSITY8'
*gltexfmt = GL_INTENSITY8;
^
glide2gl/src/Glitch64/textures.c:241:25: error: use of undeclared identifier
'GL_LUMINANCE8'
*gltexfmt = GL_LUMINANCE8;
^
glide2gl/src/Glitch64/textures.c:271:25: error: use of undeclared identifier
'GL_BGRA'
*glpixfmt = GL_BGRA;
^
glide2gl/src/Glitch64/textures.c:272:26: error: use of undeclared identifier
'GL_UNSIGNED_SHORT_1_5_5_5_REV'
*glpackfmt = GL_UNSIGNED_SHORT_1_5_5_5_REV;
^
glide2gl/src/Glitch64/textures.c:276:25: error: use of undeclared identifier
'GL_LUMINANCE8_ALPHA8'
*gltexfmt = GL_LUMINANCE8_ALPHA8;
^
glide2gl/src/Glitch64/textures.c:283:25: error: use of undeclared identifier
'GL_BGRA'
*glpixfmt = GL_BGRA;
^
glide2gl/src/Glitch64/textures.c:284:26: error: use of undeclared identifier
'GL_UNSIGNED_SHORT_4_4_4_4_REV'
*glpackfmt = GL_UNSIGNED_SHORT_4_4_4_4_REV;
^
glide2gl/src/Glitch64/textures.c:288:25: error: use of undeclared identifier
'GL_RGBA8'
*gltexfmt = GL_RGBA8;
^
glide2gl/src/Glitch64/textures.c:289:25: error: use of undeclared identifier
'GL_BGRA'
*glpixfmt = GL_BGRA;
^
glide2gl/src/Glitch64/textures.c:290:26: error: use of undeclared identifier
'GL_UNSIGNED_INT_8_8_8_8_REV'
*glpackfmt = GL_UNSIGNED_INT_8_8_8_8_REV;
^
10 errors generated.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment