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;
PFNGLXSWAPINTERVALMESAPROC SwapIntervalMESA;
PFNGLXCREATECONTEXTATTRIBSARBPROC CreateContextAttribsARB;
bool SGI_swap_control;
bool EXT_swap_control;
bool MESA_swap_control;
bool ARB_multisample;
bool ARB_framebuffer_sRGB;
bool EXT_framebuffer_sRGB;
bool ARB_create_context;
bool ARB_create_context_profile;
bool ARB_create_context_robustness;
bool EXT_create_context_es2_profile;
bool ARB_create_context_no_error;
bool ARB_context_flush_control;
bool SGI_swap_control;
bool EXT_swap_control;
bool MESA_swap_control;
bool ARB_multisample;
bool ARB_framebuffer_sRGB;
bool EXT_framebuffer_sRGB;
bool ARB_create_context;
bool ARB_create_context_profile;
bool ARB_create_context_robustness;
bool EXT_create_context_es2_profile;
bool ARB_create_context_no_error;
bool ARB_context_flush_control;
} _GLFWlibraryGLX;

View File

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

4
glfw/posix_thread.h vendored
View File

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

2
glfw/posix_time.h vendored
View File

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

4
glfw/xkb_glfw.h vendored
View File

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