From fd4967b01a373607ca8174bf6fd778edd41d3c93 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Fri, 20 Jul 2012 00:17:58 +0200 Subject: [PATCH] Removed superfluous casts. --- src/x11_egl_platform.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/x11_egl_platform.h b/src/x11_egl_platform.h index 1ab83f89..149bdf2f 100644 --- a/src/x11_egl_platform.h +++ b/src/x11_egl_platform.h @@ -52,8 +52,8 @@ #define _GLFW_PLATFORM_CONTEXT_STATE _GLFWcontextEGL EGL #define _GLFW_PLATFORM_LIBRARY_OPENGL_STATE _GLFWlibraryEGL EGL -#define _GLFW_EGL_NATIVE_WINDOW ((EGLNativeWindowType) window->X11.handle) -#define _GLFW_EGL_NATIVE_DISPLAY ((EGLNativeDisplayType) _glfwLibrary.X11.display) +#define _GLFW_EGL_NATIVE_WINDOW window->X11.handle +#define _GLFW_EGL_NATIVE_DISPLAY _glfwLibrary.X11.display //========================================================================