diff options
author | Søren Sandmann Pedersen <ssp@redhat.com> | 2013-09-30 19:22:11 -0400 |
---|---|---|
committer | Søren Sandmann <ssp@redhat.com> | 2014-01-04 16:13:27 -0500 |
commit | 779ca46e985cd2523fae630227e397e88bd892d0 (patch) | |
tree | 10c3760034ad76523c23d08f8c66e9b3413b1ffb | |
parent | a42af27fc02f792b92fd2573e38eac82a71c76d2 (diff) |
test/check-formats.c: Add support for separable blend modes
-rw-r--r-- | test/check-formats.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/check-formats.c b/test/check-formats.c index 7edc198..8eb263b 100644 --- a/test/check-formats.c +++ b/test/check-formats.c @@ -146,6 +146,22 @@ static const pixman_op_t op_list[] = PIXMAN_OP_CONJOINT_ATOP, PIXMAN_OP_CONJOINT_ATOP_REVERSE, PIXMAN_OP_CONJOINT_XOR, + + PIXMAN_OP_MULTIPLY, + PIXMAN_OP_SCREEN, + PIXMAN_OP_OVERLAY, + PIXMAN_OP_DARKEN, + PIXMAN_OP_LIGHTEN, + PIXMAN_OP_COLOR_DODGE, + PIXMAN_OP_COLOR_BURN, + PIXMAN_OP_HARD_LIGHT, + PIXMAN_OP_SOFT_LIGHT, + PIXMAN_OP_DIFFERENCE, + PIXMAN_OP_EXCLUSION, + PIXMAN_OP_HSL_HUE, + PIXMAN_OP_HSL_SATURATION, + PIXMAN_OP_HSL_COLOR, + PIXMAN_OP_HSL_LUMINOSITY }; static const pixman_format_code_t format_list[] = |