mirror of
https://github.com/brl/mutter.git
synced 2024-12-23 19:42:05 +00:00
Don't use the label 'ERROR' because it conflicts with windows.h
wingdi.h which gets included from windows.h #defines ERROR to 0 so we can't use it as a label in Cogl. This patch changes it to be error in lower case instead. Reviewed-by: Robert Bragg <robert@linux.intel.com> (cherry picked from commit e9bac2755c2cba84c82a856d369a30560d19a32e)
This commit is contained in:
parent
df77e8565e
commit
d1dc4e1e0b
@ -164,7 +164,7 @@ _cogl_blit_framebuffer_begin (CoglBlitData *data)
|
||||
|
||||
dst_fb = COGL_FRAMEBUFFER (dst_offscreen);
|
||||
if (!cogl_framebuffer_allocate (dst_fb, NULL))
|
||||
goto ERROR;
|
||||
goto error;
|
||||
|
||||
src_offscreen= _cogl_offscreen_new_to_texture_full
|
||||
(data->src_tex,
|
||||
@ -172,17 +172,17 @@ _cogl_blit_framebuffer_begin (CoglBlitData *data)
|
||||
0 /* level */);
|
||||
|
||||
if (src_offscreen == NULL)
|
||||
goto ERROR;
|
||||
goto error;
|
||||
|
||||
src_fb = COGL_FRAMEBUFFER (src_offscreen);
|
||||
if (!cogl_framebuffer_allocate (src_fb, NULL))
|
||||
goto ERROR;
|
||||
goto error;
|
||||
|
||||
_cogl_push_framebuffers (dst_fb, src_fb);
|
||||
|
||||
return TRUE;
|
||||
|
||||
ERROR:
|
||||
error:
|
||||
|
||||
if (dst_offscreen)
|
||||
cogl_object_unref (dst_offscreen);
|
||||
|
Loading…
Reference in New Issue
Block a user