summaryrefslogtreecommitdiff
path: root/boilerplate/cairo-boilerplate-xlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'boilerplate/cairo-boilerplate-xlib.c')
-rw-r--r--[-rwxr-xr-x]boilerplate/cairo-boilerplate-xlib.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/boilerplate/cairo-boilerplate-xlib.c b/boilerplate/cairo-boilerplate-xlib.c
index aed075f67..f3d559806 100755..100644
--- a/boilerplate/cairo-boilerplate-xlib.c
+++ b/boilerplate/cairo-boilerplate-xlib.c
@@ -248,10 +248,16 @@ _cairo_boilerplate_xlib_create_similar (cairo_surface_t *other,
similar->dpy = cairo_xlib_surface_get_display (other);
switch (content) {
+ case CAIRO_CONTENT_COLOR:
+ format = PictStandardRGB24;
+ break;
+ case CAIRO_CONTENT_ALPHA:
+ format = PictStandardA8;
+ break;
+ case CAIRO_CONTENT_COLOR_ALPHA:
default:
- case CAIRO_CONTENT_COLOR_ALPHA: format = PictStandardARGB32; break;
- case CAIRO_CONTENT_COLOR: format = PictStandardRGB24; break;
- case CAIRO_CONTENT_ALPHA: format = PictStandardA8; break;
+ format = PictStandardARGB32;
+ break;
}
xrender_format = XRenderFindStandardFormat (similar->dpy, format);