From 84ec99bb01b1d1367239d349f97781fd8abaae3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Camilla=20L=C3=B6wy?= Date: Mon, 20 May 2019 18:43:34 +0200 Subject: [PATCH] Remove pointless comments --- src/glx_context.c | 2 -- src/nsgl_context.m | 2 -- src/wgl_context.c | 2 -- 3 files changed, 6 deletions(-) diff --git a/src/glx_context.c b/src/glx_context.c index 1e1a9da8..7ccd1374 100644 --- a/src/glx_context.c +++ b/src/glx_context.c @@ -228,8 +228,6 @@ static GLFWglproc getProcAddressGLX(const char* procname) return _glfw_dlsym(_glfw.glx.handle, procname); } -// Destroy the OpenGL context -// static void destroyContextGLX(_GLFWwindow* window) { if (window->context.glx.window) diff --git a/src/nsgl_context.m b/src/nsgl_context.m index 4e64af1c..14253988 100644 --- a/src/nsgl_context.m +++ b/src/nsgl_context.m @@ -119,8 +119,6 @@ static GLFWglproc getProcAddressNSGL(const char* procname) return symbol; } -// Destroy the OpenGL context -// static void destroyContextNSGL(_GLFWwindow* window) { @autoreleasepool { diff --git a/src/wgl_context.c b/src/wgl_context.c index 7d5579e0..4f9a6ffe 100644 --- a/src/wgl_context.c +++ b/src/wgl_context.c @@ -389,8 +389,6 @@ static GLFWglproc getProcAddressWGL(const char* procname) return (GLFWglproc) GetProcAddress(_glfw.wgl.instance, procname); } -// Destroy the OpenGL context -// static void destroyContextWGL(_GLFWwindow* window) { if (window->context.wgl.handle)