Renamed window hint reset function for clarity.

This commit is contained in:
Camilla Berglund
2011-03-07 14:16:31 +01:00
parent 3d82683177
commit 0f481cb09d
3 changed files with 8 additions and 8 deletions
+4 -4
View File
@@ -201,10 +201,10 @@ static GLboolean isValidContextConfig(_GLFWwndconfig* wndconfig)
//////////////////////////////////////////////////////////////////////////
//========================================================================
// Clear all open window hints
// Reset all window hints to their default values
//========================================================================
void _glfwClearWindowHints(void)
void _glfwSetDefaultWindowHints(void)
{
memset(&_glfwLibrary.hints, 0, sizeof(_glfwLibrary.hints));
@@ -399,8 +399,8 @@ GLFWAPI GLFWwindow glfwOpenWindow(int width, int height,
wndconfig.glProfile = _glfwLibrary.hints.glProfile;
wndconfig.share = share;
// Clear for next open call
_glfwClearWindowHints();
// Reset to default values for the next call
_glfwSetDefaultWindowHints();
// Check the OpenGL bits of the window config
if (!isValidContextConfig(&wndconfig))