Simplified X11 screen handling.

This commit is contained in:
Camilla Berglund
2012-04-05 16:14:01 +02:00
parent 2753577dbd
commit 61264339a7
3 changed files with 52 additions and 35 deletions
+4 -4
View File
@@ -250,10 +250,10 @@ GLFWGLOBAL struct {
void _glfwInitTimer(void);
// Fullscreen support
int _glfwGetClosestVideoMode(int screen, int* width, int* height, int* rate);
void _glfwSetVideoModeMODE(int screen, int mode, int rate);
void _glfwSetVideoMode(int screen, int* width, int* height, int* rate);
void _glfwRestoreVideoMode(int screen);
int _glfwGetClosestVideoMode(int* width, int* height, int* rate);
void _glfwSetVideoModeMODE(int mode, int rate);
void _glfwSetVideoMode(int* width, int* height, int* rate);
void _glfwRestoreVideoMode(void);
// Joystick input
void _glfwInitJoysticks(void);