[Webkit-unassigned] [Bug 66903] Restructure GraphicsContext3D to make it more extensible
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Thu Aug 25 08:57:49 PDT 2011
https://bugs.webkit.org/show_bug.cgi?id=66903
--- Comment #1 from Chris Marrin <cmarrin at apple.com> 2011-08-25 08:57:50 PST ---
This code in GraphicsContext3D.h should also be cleaned up:
#if PLATFORM(QT)
bool paintsIntoCanvasBuffer() const { return true; }
#elif PLATFORM(CHROMIUM)
bool paintsIntoCanvasBuffer() const;
#elif PLATFORM(GTK)
bool paintsIntoCanvasBuffer() const { return true; }
#else
bool paintsIntoCanvasBuffer() const { return false; }
#endif
It should be forwarded to the Private class and dealt with in platform specific implementations rather than with an ifdef
--
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