summaryrefslogtreecommitdiffstats
path: root/src/core/main.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/main.h')
-rw-r--r--src/core/main.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/core/main.h b/src/core/main.h
index 60ccc116..311c0302 100644
--- a/src/core/main.h
+++ b/src/core/main.h
@@ -1,8 +1,11 @@
#pragma once
-#if defined(RW_OPENGL)
-#define PUSH_RENDERGROUP(str) glPushDebugGroup(GL_DEBUG_SOURCE_APPLICATION, 0, -1, str)
-#define POP_RENDERGROUP() glPopDebugGroup()
+#ifndef FINAL
+// defined in RwHelpder.cpp
+void PushRendergroup(const char *name);
+void PopRendergroup(void);
+#define PUSH_RENDERGROUP(str) PushRendergroup(str)
+#define POP_RENDERGROUP() PopRendergroup()
#else
#define PUSH_RENDERGROUP(str)
#define POP_RENDERGROUP()