fix for eventmarker missed in first cl

This commit is contained in:
user 2017-12-14 11:51:17 +01:00
parent 48d0c93ace
commit 217917530b

View File

@ -4226,3 +4226,8 @@ void TraceLog(int msgType, const char *text, ...)
if (msgType == LOG_ERROR) exit(1);
}
#endif
void rlSetMarker(const char *text) {
if(debugMarkerSupported)
glInsertEventMarkerEXT(0, text); //0 terminated string
}