浏览代码

Formatting

Camilla Löwy 8 年之前
父节点
当前提交
2ba461e348
共有 4 个文件被更改,包括 1 次插入4 次删除
  1. 0 1
      src/context.c
  2. 0 2
      src/init.c
  3. 1 0
      src/monitor.c
  4. 0 1
      src/window.c

+ 0 - 1
src/context.c

@@ -638,7 +638,6 @@ GLFWAPI void glfwSwapInterval(int interval)
 GLFWAPI int glfwExtensionSupported(const char* extension)
 {
     _GLFWwindow* window;
-
     assert(extension != NULL);
 
     _GLFW_REQUIRE_INIT_OR_RETURN(GLFW_FALSE);

+ 0 - 2
src/init.c

@@ -181,10 +181,8 @@ GLFWAPI void glfwGetVersion(int* major, int* minor, int* rev)
 {
     if (major != NULL)
         *major = GLFW_VERSION_MAJOR;
-
     if (minor != NULL)
         *minor = GLFW_VERSION_MINOR;
-
     if (rev != NULL)
         *rev = GLFW_VERSION_REVISION;
 }

+ 1 - 0
src/monitor.c

@@ -262,6 +262,7 @@ void _glfwSplitBPP(int bpp, int* red, int* green, int* blue)
 GLFWAPI GLFWmonitor** glfwGetMonitors(int* count)
 {
     assert(count != NULL);
+
     *count = 0;
 
     _GLFW_REQUIRE_INIT_OR_RETURN(NULL);

+ 0 - 1
src/window.c

@@ -445,7 +445,6 @@ GLFWAPI void glfwSetWindowTitle(GLFWwindow* handle, const char* title)
 {
     _GLFWwindow* window = (_GLFWwindow*) handle;
     assert(window != NULL);
-
     assert(title != NULL);
 
     _GLFW_REQUIRE_INIT();