[webkit-reviews] review granted: [Bug 119078] [GTK] [EFL] Enable tiled shadow blur for the inset shadows. : [Attachment 207444] Proposed patch

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Jul 26 14:26:13 PDT 2013


Martin Robinson <mrobinson at webkit.org> has granted Alejandro G. Castro
<alex at igalia.com>'s request for review:
Bug 119078: [GTK] [EFL] Enable tiled shadow blur for the inset shadows.
https://bugs.webkit.org/show_bug.cgi?id=119078

Attachment 207444: Proposed patch
https://bugs.webkit.org/attachment.cgi?id=207444&action=review

------- Additional Comments from Martin Robinson <mrobinson at webkit.org>
View in context: https://bugs.webkit.org/attachment.cgi?id=207444&action=review


Nice. Just a couple suggestions before landing.

> Source/WebCore/platform/graphics/cairo/GraphicsContextCairo.cpp:1054
> +    if (!roundedHoleRect.radii().isZero())
> +	   path.addRoundedRect(roundedHoleRect);
> +    else
> +	   path.addRect(roundedHoleRect.rect());

I wonder if this optimization should go into Path.cpp eventually?

> Source/WebCore/platform/graphics/cairo/GraphicsContextCairo.cpp:1061
> +    setFillRule(RULE_EVENODD);
> +    setFillColor(color, colorSpace);

I think that instead of setting the fill rule and color for the GraphicsContext
you should just set them for the Cairo context. That way you can use
cairo_save/cairo_restore, instead of oldFillRule and oldFillColor.

> Source/WebCore/platform/graphics/cairo/GraphicsContextCairo.cpp:1065
> +	   ShadowBlur& shadow = platformContext()->shadowBlur();
> +	   shadow.drawInsetShadow(this, rect, roundedHoleRect.rect(),
roundedHoleRect.radii());

I think you can avoid the temporary and move this code to the very start of the
method after the early return.


More information about the webkit-reviews mailing list