1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-10-08 07:07:25 -04:00

X11 library struct cleanup and comments.

This commit is contained in:
Camilla Berglund 2014-08-22 11:18:24 +02:00
parent 5d525c4a5f
commit c700978c45

View File

@ -112,10 +112,18 @@ typedef struct _GLFWlibraryX11
// Invisible cursor for hidden cursor mode
Cursor cursor;
// Context for mapping window XIDs to _GLFWwindow pointers
XContext context;
// True if window manager supports EWMH
GLboolean hasEWMH;
// Most recent error code received by X error handler
int errorCode;
char* clipboardString;
// LUT for mapping X11 key codes to GLFW key codes
int keyCodeLUT[256];
// Window manager atoms
Atom WM_PROTOCOLS;
Atom WM_STATE;
@ -156,12 +164,6 @@ typedef struct _GLFWlibraryX11
Atom ATOM_PAIR;
Atom GLFW_SELECTION;
// True if window manager supports EWMH
GLboolean hasEWMH;
// Error code received by the X error handler
int errorCode;
struct {
GLboolean available;
int eventBase;
@ -197,9 +199,6 @@ typedef struct _GLFWlibraryX11
int versionMinor;
} xi;
// LUT for mapping X11 key codes to GLFW key codes
int keyCodeLUT[256];
struct {
int count;
int timeout;