mirror of
https://github.com/glfw/glfw.git
synced 2026-09-19 15:25:50 +00:00
Function comment header cleanup.
This commit is contained in:
+10
-6
@@ -35,15 +35,19 @@
|
||||
#include <stdlib.h>
|
||||
|
||||
|
||||
//************************************************************************
|
||||
//**** GLFW internal functions ****
|
||||
//************************************************************************
|
||||
//========================================================================
|
||||
// Return the maxiumum of the specified values
|
||||
//========================================================================
|
||||
|
||||
static int Max(int a, int b)
|
||||
{
|
||||
return (a > b) ? a : b;
|
||||
}
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
////// GLFW internal API //////
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
|
||||
//========================================================================
|
||||
// Clear all open window hints
|
||||
//========================================================================
|
||||
@@ -357,9 +361,9 @@ const _GLFWfbconfig* _glfwChooseFBConfig(const _GLFWfbconfig* desired,
|
||||
}
|
||||
|
||||
|
||||
//************************************************************************
|
||||
//**** GLFW user functions ****
|
||||
//************************************************************************
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
////// GLFW public API //////
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
|
||||
//========================================================================
|
||||
// Create the GLFW window and its associated context
|
||||
|
||||
Reference in New Issue
Block a user