Files
wiicompiled/aurora-main/include/dolphin/gd/GDAurora.h
T
patchzyy ec226e8348 init
2026-08-23 17:10:50 +02:00

23 lines
686 B
C

#ifndef DOLPHIN_GDAURORA_H
#define DOLPHIN_GDAURORA_H
/**
* Pushes a debug group to the backend graphics API. These may show in debugging tools such as RenderDoc.
*
* It is considered an error to have unpopped debug groups at the end of the frame. They will be automatically cleared.
* Debug groups are *not* automatically scoped to a display list.
*/
void GDPushDebugGroup(const char* label);
/**
* Pop a debug group previously pushed via GXPushDebugGroup().
*/
void GDPopDebugGroup();
/**
* Sends a debug marker to the backend graphics API. These may show in debugging tools such as RenderDoc.
*/
void GDInsertDebugMarker(const char* label);
#endif // DOLPHIN_GDAURORA_H