Render: Add support for the PDF blend mode operators.

This commit is contained in:
Fredrik Höglund 2009-07-15 00:37:05 +02:00
parent 686e486730
commit 0ce42adbf4

View File

@ -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;
}