mirror of
https://github.com/MobileGL-Dev/MobileGL
synced 2026-09-07 19:58:32 +09:00
14 lines
289 B
C++
14 lines
289 B
C++
//
|
|
// 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);
|
|
}
|