mirror of
https://github.com/glfw/glfw.git
synced 2026-09-18 22:55:46 +00:00
Undecorated window support on win/mac/linux.
This commit is contained in:
committed by
Camilla Berglund
parent
2f7cad5765
commit
8e2e7b37a1
@@ -145,6 +145,7 @@ struct _GLFWhints
|
||||
int auxBuffers;
|
||||
GLboolean stereo;
|
||||
GLboolean resizable;
|
||||
GLboolean undecorated;
|
||||
GLboolean visible;
|
||||
int samples;
|
||||
GLboolean sRGB;
|
||||
@@ -170,6 +171,7 @@ struct _GLFWwndconfig
|
||||
int height;
|
||||
const char* title;
|
||||
GLboolean resizable;
|
||||
GLboolean undecorated;
|
||||
GLboolean visible;
|
||||
int clientAPI;
|
||||
int glMajor;
|
||||
@@ -216,6 +218,7 @@ struct _GLFWwindow
|
||||
// Window settings and state
|
||||
GLboolean iconified;
|
||||
GLboolean resizable;
|
||||
GLboolean undecorated;
|
||||
GLboolean visible;
|
||||
GLboolean closed;
|
||||
void* userPointer;
|
||||
|
||||
Reference in New Issue
Block a user