diff options
author | Benjamin Otte <otte@redhat.com> | 2010-04-16 21:16:57 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2010-04-23 23:30:29 +0200 |
commit | 5004cd3c44bbf0a6d1046082ea58d8c1ce5cb80e (patch) | |
tree | e8fc0078a5f181ddebc6032a053ff82b62162639 | |
parent | 7be9c14cdafa9e556e30f8525a45ec3284a6bed8 (diff) |
swap format and colorspace arguments
-rw-r--r-- | src/cairo-gl-surface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cairo-gl-surface.c b/src/cairo-gl-surface.c index eee0c271..b16e1d26 100644 --- a/src/cairo-gl-surface.c +++ b/src/cairo-gl-surface.c @@ -1152,8 +1152,8 @@ _cairo_gl_get_traps_pattern (cairo_gl_surface_t *dst, } surface = _cairo_image_surface_create_for_pixman_image (image, - PIXMAN_COLOR_SPACE_ARGB, - pixman_format); + pixman_format, + PIXMAN_COLOR_SPACE_ARGB); if (unlikely (surface->status)) { pixman_image_unref (image); return surface->status; |