Skip to content

Commit

Permalink
Merge pull request #457 from jdarpinian/master
Browse files Browse the repository at this point in the history
Fix Emscripten "undefined symbol: glCallList"
  • Loading branch information
ptitSeb authored May 2, 2024
2 parents 22d2f60 + 296bf99 commit f1442f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gl/gl4es.c
Original file line number Diff line number Diff line change
Expand Up @@ -890,7 +890,7 @@ void APIENTRY_GL4ES glPushCall(void *call) {

void APIENTRY_GL4ES gl4es_glCallLists(GLsizei n, GLenum type, const GLvoid *lists) {
#define call(name, type) \
case name: glCallList(((type *)lists)[i] + glstate->list.base); break
case name: gl4es_glCallList(((type *)lists)[i] + glstate->list.base); break

// seriously wtf
#define call_bytes(name, stride) \
Expand Down

0 comments on commit f1442f6

Please # to comment.