mirror of
https://github.com/raysan5/raylib.git
synced 2026-02-05 13:49:17 -05:00
fix for eventmarker missed in first cl
This commit is contained in:
@ -4226,3 +4226,8 @@ void TraceLog(int msgType, const char *text, ...)
|
|||||||
if (msgType == LOG_ERROR) exit(1);
|
if (msgType == LOG_ERROR) exit(1);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
void rlSetMarker(const char *text) {
|
||||||
|
if(debugMarkerSupported)
|
||||||
|
glInsertEventMarkerEXT(0, text); //0 terminated string
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user