mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-06-19 11:18:26 +02:00
Render: Add support for the PDF blend mode operators.
This commit is contained in:
parent
686e486730
commit
0ce42adbf4
1 changed files with 2 additions and 0 deletions
|
|
@ -681,6 +681,8 @@ PictOpValid (CARD8 op)
|
|||
return TRUE;
|
||||
if (PictOpConjointMinimum <= op && op <= PictOpConjointMaximum)
|
||||
return TRUE;
|
||||
if (PictOpBlendMinimum <= op && op <= PictOpBlendMaximum)
|
||||
return TRUE;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue