mirror of
https://github.com/brl/mutter.git
synced 2024-11-10 07:56:14 -05:00
tower: Fix erroneous return value
The function's return value is void, not gboolean.
This commit is contained in:
parent
d0b870d3a9
commit
7ac66faa72
@ -400,7 +400,7 @@ texture_tower_revalidate_fbo (MetaTextureTower *tower,
|
||||
if (!cogl_framebuffer_allocate (fb, &catch_error))
|
||||
{
|
||||
cogl_error_free (catch_error);
|
||||
return FALSE;
|
||||
return;
|
||||
}
|
||||
|
||||
cogl_framebuffer_orthographic (fb, 0, 0, dest_texture_width, dest_texture_height, -1., 1.);
|
||||
|
Loading…
Reference in New Issue
Block a user