summaryrefslogtreecommitdiff
path: root/src/cairo-xcb-surface.c
diff options
context:
space:
mode:
authorUli Schlachter <psychon@znc.in>2012-09-15 14:56:51 +0200
committerUli Schlachter <psychon@znc.in>2012-09-24 09:44:10 +0200
commit6300579a8b2c0e38a0c1abae89675bf6cb769902 (patch)
tree4d92eba4187a39b67f2a8fc3702c1e297616ae51 /src/cairo-xcb-surface.c
parent8d86ea4dcbefc982e4a694f1d8e90a90b3695c10 (diff)
downloadcairo-6300579a8b2c0e38a0c1abae89675bf6cb769902.tar.gz
xcb: Remove unimplemented cairo compositor
Signed-off-by: Uli Schlachter <psychon@znc.in>
Diffstat (limited to 'src/cairo-xcb-surface.c')
-rw-r--r--src/cairo-xcb-surface.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/cairo-xcb-surface.c b/src/cairo-xcb-surface.c
index 25de4b80f..d74d6fada 100644
--- a/src/cairo-xcb-surface.c
+++ b/src/cairo-xcb-surface.c
@@ -863,10 +863,6 @@ _cairo_xcb_surface_paint (void *abstract_surface,
return status;
if (surface->fallback == NULL) {
- status = _cairo_xcb_surface_cairo_paint (surface, op, source, clip);
- if (status != CAIRO_INT_STATUS_UNSUPPORTED)
- goto done;
-
status = _cairo_xcb_surface_render_paint (surface, op, source,
&composite);
if (status != CAIRO_INT_STATUS_UNSUPPORTED)
@@ -900,11 +896,6 @@ _cairo_xcb_surface_mask (void *abstract_surface,
return status;
if (surface->fallback == NULL) {
- status = _cairo_xcb_surface_cairo_mask (surface,
- op, source, mask, clip);
- if (status != CAIRO_INT_STATUS_UNSUPPORTED)
- goto done;
-
status = _cairo_xcb_surface_render_mask (surface,
op, source, mask, &composite);
if (status != CAIRO_INT_STATUS_UNSUPPORTED)
@@ -945,15 +936,6 @@ _cairo_xcb_surface_stroke (void *abstract_surface,
return status;
if (surface->fallback == NULL) {
- status = _cairo_xcb_surface_cairo_stroke (surface, op, source,
- path, style,
- ctm, ctm_inverse,
- tolerance, antialias,
- clip);
-
- if (status != CAIRO_INT_STATUS_UNSUPPORTED)
- goto done;
-
status = _cairo_xcb_surface_render_stroke (surface, op, source,
path, style,
ctm, ctm_inverse,
@@ -998,13 +980,6 @@ _cairo_xcb_surface_fill (void *abstract_surface,
return status;
if (surface->fallback == NULL) {
- status = _cairo_xcb_surface_cairo_fill (surface, op, source,
- path, fill_rule,
- tolerance, antialias,
- clip);
- if (status != CAIRO_INT_STATUS_UNSUPPORTED)
- goto done;
-
status = _cairo_xcb_surface_render_fill (surface, op, source,
path, fill_rule,
tolerance, antialias,
@@ -1048,13 +1023,6 @@ _cairo_xcb_surface_glyphs (void *abstract_surface,
return status;
if (surface->fallback == NULL) {
- status = _cairo_xcb_surface_cairo_glyphs (surface,
- op, source,
- scaled_font, glyphs, num_glyphs,
- clip);
- if (status != CAIRO_INT_STATUS_UNSUPPORTED)
- goto done;
-
status = _cairo_xcb_surface_render_glyphs (surface,
op, source,
scaled_font, glyphs, num_glyphs,