Bug 404740 - Small performance improvement for feComposite filter. r+sr=tor,a1.9=mtschrep

This commit is contained in:
longsonr@gmail.com 2007-11-28 03:19:19 -08:00
Родитель 5b35f31ef3
Коммит 4fb47a9ae9
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -1625,7 +1625,8 @@ nsSVGFECompositeElement::Filter(nsSVGFilterInstance *instance)
if (op < SVG_OPERATOR_OVER || op > SVG_OPERATOR_XOR) {
return NS_ERROR_FAILURE;
}
gfxContext::GraphicsOperator opMap[] = { gfxContext::OPERATOR_DEST,
static const gfxContext::GraphicsOperator opMap[] = {
gfxContext::OPERATOR_DEST,
gfxContext::OPERATOR_OVER,
gfxContext::OPERATOR_IN,
gfxContext::OPERATOR_OUT,