[Webkit-unassigned] [Bug 103704] [EFL][WK2] Implement Accelerated2DCanvas on WK2 Efl port
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Wed Dec 5 18:39:26 PST 2012
https://bugs.webkit.org/show_bug.cgi?id=103704
--- Comment #43 from Kyungjin Kim <gen.kim at samsung.com> 2012-12-05 18:41:51 PST ---
(In reply to comment #42)
> (In reply to comment #41)
> > (In reply to comment #40)
> > > (In reply to comment #39)
>
> > Because I need a condition that platformLayer exist but the layer doesn't have GraphicsSurface.
>
> Isint this the responsibility of platformLayer ?? (it should return false when it doesn't have a graphicssurface).
>
> overriding hasGraphicsSurface() in the derived class:
>
> bool customLayer::hasGraphicsSurface() const
> {
> #if USE(GRAPHICS_SURFACE)
> if (m_graphicssurface) // any other custom checks
> return true;
> #endif
> return false;
> }
Then canvasHasGraphicsSurface() is no longer needed I think because it was just for a specific condition I said. Canvas2DLayerEfl::hasGraphicsSurface will be implemented later in the graphics surface version if necessary. I think I can fix using only platformLayer()->hasGraphicsSurface().
--
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