master
Camilla Berglund ago%!(EXTRA string=10 years)
parent 7e13a4909e
commit ba4504a9c7
  1. 4
      src/egl_context.c
  2. 8
      src/egl_context.h

@ -262,8 +262,8 @@ int _glfwInitContextAPI(void)
return GL_FALSE; return GL_FALSE;
} }
if (_glfwPlatformExtensionSupported("EGL_KHR_create_context")) _glfw.egl.KHR_create_context =
_glfw.egl.KHR_create_context = GL_TRUE; _glfwPlatformExtensionSupported("EGL_KHR_create_context");
return GL_TRUE; return GL_TRUE;
} }

@ -89,12 +89,12 @@ typedef GLFWglproc (EGLAPIENTRY * PFNEGLGETPROCADDRESSPROC)(const char*);
// //
typedef struct _GLFWcontextEGL typedef struct _GLFWcontextEGL
{ {
EGLConfig config; EGLConfig config;
EGLContext context; EGLContext context;
EGLSurface surface; EGLSurface surface;
#if defined(_GLFW_X11) #if defined(_GLFW_X11)
XVisualInfo* visual; XVisualInfo* visual;
#endif #endif
} _GLFWcontextEGL; } _GLFWcontextEGL;

Loading…
Cancel
Save