mirror of
https://github.com/MobileGL-Dev/MobileGL
synced 2026-09-07 19:58:32 +09:00
13 lines
238 B
C++
13 lines
238 B
C++
//
|
|
// Created by BZLZHH on 2025/3/15.
|
|
//
|
|
|
|
#ifndef MOBILEGL_LOOKUP_H
|
|
#define MOBILEGL_LOOKUP_H
|
|
|
|
namespace MG_GL::GLX {
|
|
void* GetProcAddress(const char *name);
|
|
void* GetProcAddressARB(const char *name);
|
|
}
|
|
#endif //MOBILEGL_LOOKUP_H
|