Changeset 161136 in webkit
- Timestamp:
- Dec 29, 2013, 9:12:17 PM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r161133 r161136 1 2013-12-29 ChangSeok Oh <changseok.oh@collabora.com> 2 3 Remove unused functions in GraphicsContext3D.cpp 4 https://bugs.webkit.org/show_bug.cgi?id=126265 5 6 Reviewed by Andreas Kling. 7 8 platformGraphicsContext3D, platformTexture and platformLayer in GC3D.cpp 9 seem not used by any ports. 10 11 No new tests, no functionality changed. 12 13 * platform/graphics/GraphicsContext3D.cpp: 14 1 15 2013-12-29 Gyuyoung Kim <gyuyoung.kim@samsung.com> 2 16 -
trunk/Source/WebCore/platform/graphics/GraphicsContext3D.cpp
r160713 r161136 1800 1800 } 1801 1801 1802 #if !PLATFORM(BLACKBERRY) && !PLATFORM(GTK) && !PLATFORM(EFL) && !PLATFORM(MAC) && !PLATFORM(WIN) && !PLATFORM(NIX)1803 PlatformGraphicsContext3D GraphicsContext3D::platformGraphicsContext3D() const1804 {1805 return NullPlatformGraphicsContext3D;1806 }1807 1808 Platform3DObject GraphicsContext3D::platformTexture() const1809 {1810 return NullPlatform3DObject;1811 }1812 1813 #if USE(ACCELERATED_COMPOSITING)1814 PlatformLayer* GraphicsContext3D::platformLayer() const1815 {1816 return 0;1817 }1818 #endif1819 #endif1820 1821 1802 } // namespace WebCore 1822 1803
Note:
See TracChangeset
for help on using the changeset viewer.