[Fix]: fix GLX GetProcAddress not exported properly

This commit is contained in:
2025-06-20 17:48:30 +08:00
parent 47cd496e6d
commit db1879d098
4 changed files with 27 additions and 0 deletions
@@ -0,0 +1,13 @@
//
// Created by Swung 0x48 on 2025/6/20.
//
#include "GLXFuncsDefinitions.h"
MG_EXPORT void* glXGetProcAddress(const char *name) {
return MG_GL::GLX::GetProcAddress(name);
}
MG_EXPORT void* glXGetProcAddressARB(const char *name) {
return MG_GL::GLX::GetProcAddressARB(name);
}