[Webkit-unassigned] [Bug 103704] [EFL][WK2] Implement Accelerated2DCanvas on WK2 Efl port

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Dec 3 22:23:00 PST 2012


https://bugs.webkit.org/show_bug.cgi?id=103704





--- Comment #26 from Kalyan <kalyan.kondapally at intel.com>  2012-12-03 22:25:24 PST ---
(In reply to comment #23)
> Created an attachment (id=177414)
 --> (https://bugs.webkit.org/attachment.cgi?id=177414&action=review) [details]
> Patch

I think canvasHasGraphicsSurface should always return false when GRAPHICS_SURFACE is not used , irrespective of whether we have a platformlayer or not.

I mean something like this:
bool CoordinatedGraphicsLayer::canvasHasGraphicsSurface() const
{
#if USE(GRAPHICS_SURFACE)
    if (m_canvasPlatformLayer)
        return true;
#endif
    return false;
}

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list