Fix bool indentation
The wrong indentation was caused by the removal of GLFWbool in fe62700825.
This commit is contained in:
parent
a10c816c05
commit
0459dda5c2
24
glfw/glx_context.h
vendored
24
glfw/glx_context.h
vendored
@ -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;
|
||||||
|
|
||||||
|
|||||||
2
glfw/linux_joystick.h
vendored
2
glfw/linux_joystick.h
vendored
@ -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
4
glfw/posix_thread.h
vendored
@ -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
2
glfw/posix_time.h
vendored
@ -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
4
glfw/xkb_glfw.h
vendored
@ -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;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user