Skip to content

Commit

Permalink
gl: Fix compilation failure for flush cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Robinson committed May 23, 2012
1 parent bf9c295 commit 52b7622
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cairo-gl-composite.c
Original file line number Diff line number Diff line change
Expand Up @@ -747,8 +747,8 @@ _cairo_gl_composite_draw_triangles_with_clip_region (cairo_gl_context_t *ctx,
{
int i, num_rectangles;

if (!ctx->clip_region)
_cairo_gl_composite_draw_triangles (ctx, count)
if (!ctx->clip_region) {
_cairo_gl_composite_draw_triangles (ctx, count);
return;
}

Expand Down

0 comments on commit 52b7622

Please sign in to comment.