mirror of
https://github.com/glfw/glfw.git
synced 2024-11-10 00:51:47 +00:00
Formatting.
This commit is contained in:
parent
50e6f828d1
commit
5fd3fc71de
@ -358,9 +358,13 @@ extern "C" {
|
||||
typedef struct _GLFWwindow* GLFWwindow;
|
||||
|
||||
/* The video mode structure used by glfwGetVideoModes() */
|
||||
typedef struct {
|
||||
int width, height;
|
||||
int redBits, blueBits, greenBits;
|
||||
typedef struct
|
||||
{
|
||||
int width;
|
||||
int height;
|
||||
int redBits;
|
||||
int blueBits;
|
||||
int greenBits;
|
||||
} GLFWvidmode;
|
||||
|
||||
/* Function pointer types */
|
||||
|
Loading…
Reference in New Issue
Block a user