File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2474,7 +2474,7 @@ void rlLoadExtensions(void *loader)
24742474 }
24752475
24762476 // Check instanced rendering support
2477- if (strstr (extList [i ], (const char * )"instanced_arrays" ) != NULL ) // Broad check for instanced_arrays
2477+ if (strstr (extList [i ], (const char * )"instanced_arrays" ) != NULL ) // Broad check for instanced_arrays
24782478 {
24792479 // Specific check
24802480 if (strcmp (extList [i ], (const char * )"GL_ANGLE_instanced_arrays" ) == 0 ) // ANGLE
@@ -2507,7 +2507,7 @@ void rlLoadExtensions(void *loader)
25072507 glDrawArraysInstanced = (PFNGLDRAWARRAYSINSTANCEDEXTPROC )((rlglLoadProc )loader )("glDrawArraysInstancedEXT" );
25082508 glDrawElementsInstanced = (PFNGLDRAWELEMENTSINSTANCEDEXTPROC )((rlglLoadProc )loader )("glDrawElementsInstancedEXT" );
25092509 }
2510- else if (strcmp (extList [i ], (const char * )"GL_NV_draw_instanced" ) == 0 )
2510+ else if (strcmp (extList [i ], (const char * )"GL_NV_draw_instanced" ) == 0 )
25112511 {
25122512 glDrawArraysInstanced = (PFNGLDRAWARRAYSINSTANCEDEXTPROC )((rlglLoadProc )loader )("glDrawArraysInstancedNV" );
25132513 glDrawElementsInstanced = (PFNGLDRAWELEMENTSINSTANCEDEXTPROC )((rlglLoadProc )loader )("glDrawElementsInstancedNV" );
You can’t perform that action at this time.
0 commit comments