summaryrefslogtreecommitdiff
path: root/src/render/mglfunctions.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/mglfunctions.h')
-rw-r--r--src/render/mglfunctions.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/render/mglfunctions.h b/src/render/mglfunctions.h
index bfddb5a2c..569f4aac4 100644
--- a/src/render/mglfunctions.h
+++ b/src/render/mglfunctions.h
@@ -36,7 +36,16 @@
reinterpret_cast<const GLubyte*>(name))
#endif
-#define assignFunction(func, name) \
+#define assignFunction(func) \
+ { \
+ m##func = reinterpret_cast<func##_t>(getFunction(#func)); \
+ if (m##func == nullptr) \
+ logger->log("function not found: " #func); \
+ else \
+ logger->log("assigned function: " #func); \
+ }
+
+#define assignFunction2(func, name) \
{ \
m##func = reinterpret_cast<func##_t>(getFunction(name)); \
if (m##func == nullptr) \
@@ -45,7 +54,7 @@
logger->log(std::string("assigned function: ") + name); \
}
-#define assignFunctionEmu(func, name) \
+#define assignFunctionEmu2(func, name) \
{ \
m##func = reinterpret_cast<func##_t>(getFunction(name)); \
if (m##func == nullptr) \