Commit e3f3befa authored by mrobinson@webkit.org's avatar mrobinson@webkit.org

2011-04-06 Martin Robinson <mrobinson@igalia.com>

        Build fix for debug Cairo builds.

        * platform/graphics/cairo/PlatformContextCairo.cpp:
        (WebCore::PlatformContextCairo::pushImageMask): Update the reference to m_maskInformation.

git-svn-id: svn://svn.chromium.org/blink/trunk@83048 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 5c51d01c
2011-04-06 Martin Robinson <mrobinson@igalia.com>
Build fix for debug Cairo builds.
* platform/graphics/cairo/PlatformContextCairo.cpp:
(WebCore::PlatformContextCairo::pushImageMask): Update the reference to m_maskInformation.
2011-04-06 Diego Gonzalez <diegohcg@webkit.org> 2011-04-06 Diego Gonzalez <diegohcg@webkit.org>
Reviewed by Antonio Gomes. Reviewed by Antonio Gomes.
...@@ -59,7 +59,7 @@ void PlatformContextCairo::pushImageMask(cairo_surface_t* surface, const FloatRe ...@@ -59,7 +59,7 @@ void PlatformContextCairo::pushImageMask(cairo_surface_t* surface, const FloatRe
{ {
// We must call savePlatformState at least once before we can use image masking, // We must call savePlatformState at least once before we can use image masking,
// since we actually apply the mask in restorePlatformState. // since we actually apply the mask in restorePlatformState.
ASSERT(!m_data->maskImageStack.isEmpty()); ASSERT(!m_maskImageStack.isEmpty());
m_maskImageStack.last().update(surface, rect); m_maskImageStack.last().update(surface, rect);
// Cairo doesn't support the notion of an image clip, so we push a group here // Cairo doesn't support the notion of an image clip, so we push a group here
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment