mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-20 04:34:48 +00:00
18 lines
285 B
C
18 lines
285 B
C
|
|
#ifndef PLATFORM_GL_H
|
||
|
|
#define PLATFORM_GL_H
|
||
|
|
|
||
|
|
class PlatformWindow;
|
||
|
|
|
||
|
|
namespace PlatformGL
|
||
|
|
{
|
||
|
|
void init();
|
||
|
|
|
||
|
|
void* CreateContextGL( PlatformWindow *window );
|
||
|
|
|
||
|
|
void MakeCurrentGL( PlatformWindow *window, void *glContext );
|
||
|
|
|
||
|
|
void setVSync(const int i);
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif //PLATFORM_GL_H
|