Remove some pointless comments

This commit is contained in:
Camilla Löwy
2026-02-13 13:24:09 +01:00
parent 232164f62b
commit c4684b288d
4 changed files with 0 additions and 24 deletions

View File

@@ -358,8 +358,6 @@ static void destroyContextEGL(_GLFWwindow* window)
////// GLFW internal API ////// ////// GLFW internal API //////
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// Initialize EGL
//
GLFWbool _glfwInitEGL(void) GLFWbool _glfwInitEGL(void)
{ {
int i; int i;
@@ -545,8 +543,6 @@ GLFWbool _glfwInitEGL(void)
return GLFW_TRUE; return GLFW_TRUE;
} }
// Terminate EGL
//
void _glfwTerminateEGL(void) void _glfwTerminateEGL(void)
{ {
if (_glfw.egl.display) if (_glfw.egl.display)
@@ -570,8 +566,6 @@ void _glfwTerminateEGL(void)
attribs[index++] = v; \ attribs[index++] = v; \
} }
// Create the OpenGL or OpenGL ES context
//
GLFWbool _glfwCreateContextEGL(_GLFWwindow* window, GLFWbool _glfwCreateContextEGL(_GLFWwindow* window,
const _GLFWctxconfig* ctxconfig, const _GLFWctxconfig* ctxconfig,
const _GLFWfbconfig* fbconfig) const _GLFWfbconfig* fbconfig)

View File

@@ -253,8 +253,6 @@ static void destroyContextGLX(_GLFWwindow* window)
////// GLFW internal API ////// ////// GLFW internal API //////
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// Initialize GLX
//
GLFWbool _glfwInitGLX(void) GLFWbool _glfwInitGLX(void)
{ {
const char* sonames[] = const char* sonames[] =
@@ -426,8 +424,6 @@ GLFWbool _glfwInitGLX(void)
return GLFW_TRUE; return GLFW_TRUE;
} }
// Terminate GLX
//
void _glfwTerminateGLX(void) void _glfwTerminateGLX(void)
{ {
// NOTE: This function must not call any X11 functions, as it is called // NOTE: This function must not call any X11 functions, as it is called
@@ -447,8 +443,6 @@ void _glfwTerminateGLX(void)
attribs[index++] = v; \ attribs[index++] = v; \
} }
// Create the OpenGL or OpenGL ES context
//
GLFWbool _glfwCreateContextGLX(_GLFWwindow* window, GLFWbool _glfwCreateContextGLX(_GLFWwindow* window,
const _GLFWctxconfig* ctxconfig, const _GLFWctxconfig* ctxconfig,
const _GLFWfbconfig* fbconfig) const _GLFWfbconfig* fbconfig)

View File

@@ -128,8 +128,6 @@ static void destroyContextNSGL(_GLFWwindow* window)
////// GLFW internal API ////// ////// GLFW internal API //////
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
// Initialize OpenGL support
//
GLFWbool _glfwInitNSGL(void) GLFWbool _glfwInitNSGL(void)
{ {
if (_glfw.nsgl.framework) if (_glfw.nsgl.framework)
@@ -147,14 +145,10 @@ GLFWbool _glfwInitNSGL(void)
return GLFW_TRUE; return GLFW_TRUE;
} }
// Terminate OpenGL support
//
void _glfwTerminateNSGL(void) void _glfwTerminateNSGL(void)
{ {
} }
// Create the OpenGL context
//
GLFWbool _glfwCreateContextNSGL(_GLFWwindow* window, GLFWbool _glfwCreateContextNSGL(_GLFWwindow* window,
const _GLFWctxconfig* ctxconfig, const _GLFWctxconfig* ctxconfig,
const _GLFWfbconfig* fbconfig) const _GLFWfbconfig* fbconfig)

View File

@@ -401,8 +401,6 @@ static void destroyContextWGL(_GLFWwindow* window)
} }
} }
// Initialize WGL
//
GLFWbool _glfwInitWGL(void) GLFWbool _glfwInitWGL(void)
{ {
PIXELFORMATDESCRIPTOR pfd; PIXELFORMATDESCRIPTOR pfd;
@@ -521,8 +519,6 @@ GLFWbool _glfwInitWGL(void)
return GLFW_TRUE; return GLFW_TRUE;
} }
// Terminate WGL
//
void _glfwTerminateWGL(void) void _glfwTerminateWGL(void)
{ {
if (_glfw.wgl.instance) if (_glfw.wgl.instance)
@@ -536,8 +532,6 @@ void _glfwTerminateWGL(void)
attribs[index++] = v; \ attribs[index++] = v; \
} }
// Create the OpenGL or OpenGL ES context
//
GLFWbool _glfwCreateContextWGL(_GLFWwindow* window, GLFWbool _glfwCreateContextWGL(_GLFWwindow* window,
const _GLFWctxconfig* ctxconfig, const _GLFWctxconfig* ctxconfig,
const _GLFWfbconfig* fbconfig) const _GLFWfbconfig* fbconfig)