From 8ebd13553695c6f26c16e94c5b75db9f909b9265 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Wed, 19 Mar 2014 13:15:04 +0100 Subject: [PATCH] Fixed last use of wndconfig in EGL port. --- src/egl_context.c | 2 +- src/egl_platform.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/egl_context.c b/src/egl_context.c index 1fb62d19..7caff10f 100644 --- a/src/egl_context.c +++ b/src/egl_context.c @@ -438,7 +438,7 @@ void _glfwDestroyContext(_GLFWwindow* window) // Analyzes the specified context for possible recreation // int _glfwAnalyzeContext(const _GLFWwindow* window, - const _GLFWwndconfig* wndconfig, + const _GLFWctxconfig* ctxconfig, const _GLFWfbconfig* fbconfig) { #if defined(_GLFW_WIN32) diff --git a/src/egl_platform.h b/src/egl_platform.h index 5bbde0ca..77650fa6 100644 --- a/src/egl_platform.h +++ b/src/egl_platform.h @@ -88,7 +88,7 @@ int _glfwCreateContext(_GLFWwindow* window, const _GLFWfbconfig* fbconfig); void _glfwDestroyContext(_GLFWwindow* window); int _glfwAnalyzeContext(const _GLFWwindow* window, - const _GLFWwndconfig* wndconfig, + const _GLFWctxconfig* ctxconfig, const _GLFWfbconfig* fbconfig); #endif // _egl_platform_h_