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
@@ -176,7 +176,7 @@ static GLFWbool chooseFBConfigs(const _GLFWctxconfig* ctxconfig,
// Initialize EGL
//
int _glfwInitEGL(void)
GLFWbool _glfwInitEGL(void)
{
int i;
const char* sonames[] =
@@ -284,9 +284,9 @@ void _glfwTerminateEGL(void)
// Create the OpenGL or OpenGL ES context
//
int _glfwCreateContextEGL(_GLFWwindow* window,
const _GLFWctxconfig* ctxconfig,
const _GLFWfbconfig* fbconfig)
GLFWbool _glfwCreateContextEGL(_GLFWwindow* window,
const _GLFWctxconfig* ctxconfig,
const _GLFWfbconfig* fbconfig)
{
int attribs[40];
EGLConfig config;