mirror of
https://github.com/brl/mutter.git
synced 2024-11-08 23:16:20 -05:00
tower: Fix erroneous return value
The function's return value is void, not gboolean.
This commit is contained in:
parent
4366687b95
commit
fdfde62a33
@ -410,7 +410,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