[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 02:20:25 PST 2012
https://bugs.webkit.org/show_bug.cgi?id=103704
--- Comment #20 from Kalyan <kalyan.kondapally at intel.com> 2012-12-03 02:22:47 PST ---
(In reply to comment #1)
> Created an attachment (id=176882)
--> (https://bugs.webkit.org/attachment.cgi?id=176882&action=review) [details]
> Patch
(In reply to comment #18)
> Created an attachment (id=177177)
--> (https://bugs.webkit.org/attachment.cgi?id=177177&action=review) [details]
> Patch
We should also check for ENABLE(ACCELERATED_2D_CANVAS) when returning platformLayer. As I see it, we don't even create or declare the layer otherwise.
Same at other places where layer comes into play.
for example:
#if USE(ACCELERATED_COMPOSITING)
PlatformLayer* ImageBuffer::platformLayer() const
{
#if ENABLE(ACCELERATED_2D_CANVAS) && PLATFORM(EFL)
return static_cast<TextureMapperPlatformLayer*>(m_data.m_platformLayer.get());
#else
return 0;
#endif
}
#endif
Currently we expose the surface through IMageB
--
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