From 4207a0a09b747564f6c2788fc6e6b23ab5a9cca2 Mon Sep 17 00:00:00 2001 From: git <> Date: Thu, 26 Apr 2018 14:45:31 +0200 Subject: [PATCH] Fixed 'wgl' member by renaming it to 'glx' on Linux port. --- src/glx_context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/glx_context.c b/src/glx_context.c index 88c3af244..09627bd12 100644 --- a/src/glx_context.c +++ b/src/glx_context.c @@ -506,7 +506,7 @@ GLFWbool _glfwCreateContextGLX(_GLFWwindow* window, if(share) { // Use shared context instead of creating a new one - window->context.wgl.handle = share; + window->context.glx.handle = share; window->context.customctx = GLFW_FALSE; } else