Formatting.

This commit is contained in:
Camilla Berglund 2010-09-09 19:44:43 +02:00
parent 50e6f828d1
commit 5fd3fc71de

View File

@ -358,9 +358,13 @@ extern "C" {
typedef struct _GLFWwindow* GLFWwindow; typedef struct _GLFWwindow* GLFWwindow;
/* The video mode structure used by glfwGetVideoModes() */ /* The video mode structure used by glfwGetVideoModes() */
typedef struct { typedef struct
int width, height; {
int redBits, blueBits, greenBits; int width;
int height;
int redBits;
int blueBits;
int greenBits;
} GLFWvidmode; } GLFWvidmode;
/* Function pointer types */ /* Function pointer types */