platformGL.h
Engine/source/platform/platformGL.h
Namespaces:
namespace
Detailed Description
1 2#ifndef PLATFORM_GL_H 3#define PLATFORM_GL_H 4 5class PlatformWindow; 6 7namespace PlatformGL 8{ 9 void init(); 10 11 void* CreateContextGL( PlatformWindow *window ); 12 13 void MakeCurrentGL( PlatformWindow *window, void *glContext ); 14 15 void setVSync(const int i); 16} 17 18#endif //PLATFORM_GL_H 19