Fix bool indentation

The wrong indentation was caused by the removal of GLFWbool in fe62700825.
This commit is contained in:
Luflosi 2019-08-30 15:32:19 +02:00
parent a10c816c05
commit 0459dda5c2
No known key found for this signature in database
GPG Key ID: 14140F703B7D8362
5 changed files with 18 additions and 18 deletions

24
glfw/glx_context.h vendored
View File

@ -153,18 +153,18 @@ typedef struct _GLFWlibraryGLX
PFNGLXSWAPINTERVALEXTPROC SwapIntervalEXT; PFNGLXSWAPINTERVALEXTPROC SwapIntervalEXT;
PFNGLXSWAPINTERVALMESAPROC SwapIntervalMESA; PFNGLXSWAPINTERVALMESAPROC SwapIntervalMESA;
PFNGLXCREATECONTEXTATTRIBSARBPROC CreateContextAttribsARB; PFNGLXCREATECONTEXTATTRIBSARBPROC CreateContextAttribsARB;
bool SGI_swap_control; bool SGI_swap_control;
bool EXT_swap_control; bool EXT_swap_control;
bool MESA_swap_control; bool MESA_swap_control;
bool ARB_multisample; bool ARB_multisample;
bool ARB_framebuffer_sRGB; bool ARB_framebuffer_sRGB;
bool EXT_framebuffer_sRGB; bool EXT_framebuffer_sRGB;
bool ARB_create_context; bool ARB_create_context;
bool ARB_create_context_profile; bool ARB_create_context_profile;
bool ARB_create_context_robustness; bool ARB_create_context_robustness;
bool EXT_create_context_es2_profile; bool EXT_create_context_es2_profile;
bool ARB_create_context_no_error; bool ARB_create_context_no_error;
bool ARB_context_flush_control; bool ARB_context_flush_control;
} _GLFWlibraryGLX; } _GLFWlibraryGLX;

View File

@ -52,7 +52,7 @@ typedef struct _GLFWlibraryLinux
int inotify; int inotify;
int watch; int watch;
regex_t regex; regex_t regex;
bool dropped; bool dropped;
} _GLFWlibraryLinux; } _GLFWlibraryLinux;

4
glfw/posix_thread.h vendored
View File

@ -35,7 +35,7 @@
// //
typedef struct _GLFWtlsPOSIX typedef struct _GLFWtlsPOSIX
{ {
bool allocated; bool allocated;
pthread_key_t key; pthread_key_t key;
} _GLFWtlsPOSIX; } _GLFWtlsPOSIX;
@ -44,7 +44,7 @@ typedef struct _GLFWtlsPOSIX
// //
typedef struct _GLFWmutexPOSIX typedef struct _GLFWmutexPOSIX
{ {
bool allocated; bool allocated;
pthread_mutex_t handle; pthread_mutex_t handle;
} _GLFWmutexPOSIX; } _GLFWmutexPOSIX;

2
glfw/posix_time.h vendored
View File

@ -34,7 +34,7 @@
// //
typedef struct _GLFWtimerPOSIX typedef struct _GLFWtimerPOSIX
{ {
bool monotonic; bool monotonic;
uint64_t frequency; uint64_t frequency;
} _GLFWtimerPOSIX; } _GLFWtimerPOSIX;

4
glfw/xkb_glfw.h vendored
View File

@ -67,8 +67,8 @@ typedef struct {
#ifdef _GLFW_X11 #ifdef _GLFW_X11
int32_t keyboard_device_id; int32_t keyboard_device_id;
bool available; bool available;
bool detectable; bool detectable;
int majorOpcode; int majorOpcode;
int eventBase; int eventBase;
int errorBase; int errorBase;