mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-01-06 14:20:19 +01:00
xlib: Add symbols to indicate if XRender supports GOOD/BEST filtering
Currently these are always false, but if some version of xlib uses a pixman supporting filtering they could be changed to return true for that version. Reviewed-by: Bryce Harrington <b.harrington@samsung.com>
This commit is contained in:
parent
c8b1bf55ad
commit
c653dcd3e6
1 changed files with 2 additions and 0 deletions
|
|
@ -373,6 +373,8 @@ _cairo_xlib_font_close (cairo_xlib_font_t *font);
|
|||
|
||||
#define CAIRO_RENDER_HAS_PICTURE_TRANSFORM(surface) CAIRO_RENDER_AT_LEAST((surface), 0, 6)
|
||||
#define CAIRO_RENDER_HAS_FILTERS(surface) CAIRO_RENDER_AT_LEAST((surface), 0, 6)
|
||||
#define CAIRO_RENDER_HAS_FILTER_GOOD(surface) FALSE
|
||||
#define CAIRO_RENDER_HAS_FILTER_BEST(surface) FALSE
|
||||
|
||||
#define CAIRO_RENDER_HAS_EXTENDED_REPEAT(surface) CAIRO_RENDER_AT_LEAST((surface), 0, 10)
|
||||
#define CAIRO_RENDER_HAS_GRADIENTS(surface) CAIRO_RENDER_AT_LEAST((surface), 0, 10)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue