mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-23 04:58:08 +02:00
[directfb] Silence compiler warnings.
Add extended blend mode to operator switch.
This commit is contained in:
parent
8ad3fca210
commit
8c55ca9ebc
1 changed files with 15 additions and 0 deletions
|
|
@ -287,6 +287,21 @@ _directfb_get_operator (cairo_operator_t operator,
|
|||
dstblend = DSBF_ONE;
|
||||
break;
|
||||
#endif
|
||||
case CAIRO_OPERATOR_MULTIPLY:
|
||||
case CAIRO_OPERATOR_SCREEN:
|
||||
case CAIRO_OPERATOR_OVERLAY:
|
||||
case CAIRO_OPERATOR_DARKEN:
|
||||
case CAIRO_OPERATOR_LIGHTEN:
|
||||
case CAIRO_OPERATOR_COLOR_DODGE:
|
||||
case CAIRO_OPERATOR_COLOR_BURN:
|
||||
case CAIRO_OPERATOR_HARD_LIGHT:
|
||||
case CAIRO_OPERATOR_SOFT_LIGHT:
|
||||
case CAIRO_OPERATOR_DIFFERENCE:
|
||||
case CAIRO_OPERATOR_EXCLUSION:
|
||||
case CAIRO_OPERATOR_HSL_HUE:
|
||||
case CAIRO_OPERATOR_HSL_SATURATION:
|
||||
case CAIRO_OPERATOR_HSL_COLOR:
|
||||
case CAIRO_OPERATOR_HSL_LUMINOSITY:
|
||||
default:
|
||||
return FALSE;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue