mirror of
https://github.com/patchzyy/wiicompiled
synced 2026-09-12 09:45:04 -04:00
23 lines
686 B
C
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
|