summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Roberts <neil@linux.intel.com>2012-10-03 12:03:18 +0100
committerNeil Roberts <neil@linux.intel.com>2012-10-03 12:03:18 +0100
commit9c8433087b7573f7606dfae2bae3045803ead115 (patch)
treea990c25bea15bd9fe1192dcdf7846ac10883d215
parentd0dab0599cea82e040a7ed02d5863fa1462c3587 (diff)
downloadcogl-9c8433087b7573f7606dfae2bae3045803ead115.tar.gz
Fix a warning when building the SDL2 winsys
The SDL2 winsys was using _cogl_set_error without including its header so it was giving an annoying warning. This patch also fixes some indentation issues. Reviewed-by: Robert Bragg <robert@linux.intel.com>
-rw-r--r--cogl/winsys/cogl-winsys-sdl2.c41
1 files changed, 21 insertions, 20 deletions
diff --git a/cogl/winsys/cogl-winsys-sdl2.c b/cogl/winsys/cogl-winsys-sdl2.c
index 3ebecf31..cd991a4d 100644
--- a/cogl/winsys/cogl-winsys-sdl2.c
+++ b/cogl/winsys/cogl-winsys-sdl2.c
@@ -37,6 +37,7 @@
#include "cogl-context-private.h"
#include "cogl-onscreen-private.h"
#include "cogl-winsys-sdl-private.h"
+#include "cogl-error-private.h"
typedef struct _CoglContextSdl2
{
@@ -91,9 +92,9 @@ _cogl_winsys_renderer_connect (CoglRenderer *renderer,
if (SDL_VideoInit (NULL) < 0)
{
_cogl_set_error (error, COGL_WINSYS_ERROR,
- COGL_WINSYS_ERROR_INIT,
- "SDL_Init failed: %s",
- SDL_GetError ());
+ COGL_WINSYS_ERROR_INIT,
+ "SDL_Init failed: %s",
+ SDL_GetError ());
return FALSE;
}
@@ -169,9 +170,9 @@ _cogl_winsys_display_setup (CoglDisplay *display,
if (sdl_display->dummy_window == NULL)
{
_cogl_set_error (error, COGL_WINSYS_ERROR,
- COGL_WINSYS_ERROR_INIT,
- "SDL_CreateWindow failed: %s",
- SDL_GetError ());
+ COGL_WINSYS_ERROR_INIT,
+ "SDL_CreateWindow failed: %s",
+ SDL_GetError ());
goto error;
}
@@ -180,9 +181,9 @@ _cogl_winsys_display_setup (CoglDisplay *display,
if (sdl_display->context == NULL)
{
_cogl_set_error (error, COGL_WINSYS_ERROR,
- COGL_WINSYS_ERROR_INIT,
- "SDL_GL_CreateContext failed: %s",
- SDL_GetError ());
+ COGL_WINSYS_ERROR_INIT,
+ "SDL_GL_CreateContext failed: %s",
+ SDL_GetError ());
goto error;
}
@@ -202,8 +203,8 @@ _cogl_winsys_display_setup (CoglDisplay *display,
if (!g_ascii_isdigit (gl_version[0]))
{
_cogl_set_error (error, COGL_WINSYS_ERROR,
- COGL_WINSYS_ERROR_INIT,
- "The GL driver was requested but SDL is using GLES");
+ COGL_WINSYS_ERROR_INIT,
+ "The GL driver was requested but SDL is using GLES");
goto error;
}
@@ -235,9 +236,9 @@ _cogl_winsys_display_setup (CoglDisplay *display,
if (!g_str_has_prefix (gl_version, "OpenGL ES 2"))
{
_cogl_set_error (error, COGL_WINSYS_ERROR,
- COGL_WINSYS_ERROR_INIT,
- "The GLES2 driver was requested but SDL is "
- "not using GLES2");
+ COGL_WINSYS_ERROR_INIT,
+ "The GLES2 driver was requested but SDL is "
+ "not using GLES2");
goto error;
}
break;
@@ -246,9 +247,9 @@ _cogl_winsys_display_setup (CoglDisplay *display,
if (!g_str_has_prefix (gl_version, "OpenGL ES 1"))
{
_cogl_set_error (error, COGL_WINSYS_ERROR,
- COGL_WINSYS_ERROR_INIT,
- "The GLES1 driver was requested but SDL is "
- "not using GLES1");
+ COGL_WINSYS_ERROR_INIT,
+ "The GLES1 driver was requested but SDL is "
+ "not using GLES1");
goto error;
}
break;
@@ -365,9 +366,9 @@ _cogl_winsys_onscreen_init (CoglOnscreen *onscreen,
if (window == NULL)
{
_cogl_set_error (error, COGL_WINSYS_ERROR,
- COGL_WINSYS_ERROR_CREATE_ONSCREEN,
- "SDL_CreateWindow failed: %s",
- SDL_GetError ());
+ COGL_WINSYS_ERROR_CREATE_ONSCREEN,
+ "SDL_CreateWindow failed: %s",
+ SDL_GetError ());
return FALSE;
}