Added GLFW_FLOATING.

Fixes #23.
This commit is contained in:
Camilla Berglund
2014-05-23 14:01:02 +02:00
parent c9808586b3
commit 3ce7bfef07
11 changed files with 81 additions and 34 deletions
+3
View File
@@ -153,6 +153,7 @@ struct _GLFWwndconfig
GLboolean visible;
GLboolean decorated;
GLboolean autoIconify;
GLboolean floating;
_GLFWmonitor* monitor;
};
@@ -218,6 +219,7 @@ struct _GLFWwindow
GLboolean resizable;
GLboolean decorated;
GLboolean autoIconify;
GLboolean floating;
GLboolean visible;
GLboolean closed;
void* userPointer;
@@ -323,6 +325,7 @@ struct _GLFWlibrary
int visible;
int decorated;
int autoIconify;
int floating;
int samples;
int sRGB;
int refreshRate;