Manually review previous PR

This commit is contained in:
Ray San
2017-12-15 13:44:31 +01:00
parent bcdde6c65a
commit 53ad53d051
6 changed files with 36 additions and 32 deletions

View File

@@ -1293,6 +1293,12 @@ int rlGetVersion(void)
#endif
}
// Set debug marker
void rlSetDebugMarker(const char *text)
{
if(debugMarkerSupported) glInsertEventMarkerEXT(0, text); // 0 terminated string
}
// Load OpenGL extensions
// NOTE: External loader function could be passed as a pointer
void rlLoadExtensions(void *loader)