Moved internal context function declarations.

This commit is contained in:
Camilla Berglund
2014-01-22 01:23:35 +01:00
parent 040552fcca
commit 0163bc05d6
7 changed files with 50 additions and 27 deletions
+14
View File
@@ -77,4 +77,18 @@ typedef struct _GLFWlibraryEGL
} _GLFWlibraryEGL;
//========================================================================
// Prototypes for platform specific internal functions
//========================================================================
int _glfwInitContextAPI(void);
void _glfwTerminateContextAPI(void);
int _glfwCreateContext(_GLFWwindow* window,
const _GLFWwndconfig* wndconfig,
const _GLFWfbconfig* fbconfig);
void _glfwDestroyContext(_GLFWwindow* window);
int _glfwAnalyzeContext(const _GLFWwindow* window,
const _GLFWwndconfig* wndconfig,
const _GLFWfbconfig* fbconfig);
#endif // _egl_platform_h_