Use more GLFWbool

This commit is contained in:
Camilla Berglund
2015-12-10 17:10:05 +01:00
parent 2b52008405
commit 45efb935c5
12 changed files with 40 additions and 40 deletions
+4 -4
View File
@@ -231,10 +231,10 @@ struct _GLFWfbconfig
int accumBlueBits;
int accumAlphaBits;
int auxBuffers;
int stereo;
GLFWbool stereo;
int samples;
int sRGB;
int doublebuffer;
GLFWbool sRGB;
GLFWbool doublebuffer;
// This is defined in the context API's context.h
_GLFW_PLATFORM_FBCONFIG;
@@ -918,6 +918,6 @@ void _glfwFreeMonitors(_GLFWmonitor** monitors, int count);
/*! @ingroup utility
*/
int _glfwIsPrintable(int key);
GLFWbool _glfwIsPrintable(int key);
#endif // _glfw3_internal_h_