Lines Matching defs:_GLFWwindow
57 typedef struct _GLFWwindow _GLFWwindow; typedef
345 struct _GLFWwindow struct
347 struct _GLFWwindow* next; argument
350 GLFWbool resizable;
351 GLFWbool decorated;
352 GLFWbool autoIconify;
353 GLFWbool floating;
354 GLFWbool closed;
355 void* userPointer;
356 GLFWvidmode videoMode;
357 _GLFWmonitor* monitor;
358 _GLFWcursor* cursor;
360 int minwidth, minheight;
361 int maxwidth, maxheight;
362 int numer, denom;
364 GLFWbool stickyKeys;
365 GLFWbool stickyMouseButtons;
366 int cursorMode;
367 char mouseButtons[GLFW_MOUSE_BUTTON_LAST + 1];
368 char keys[GLFW_KEY_LAST + 1];
370 double virtualCursorPosX, virtualCursorPosY;
372 _GLFWcontext context;
374 struct {
406 _GLFWwindow* window; argument