Changeset 161136 in webkit


Ignore:
Timestamp:
Dec 29, 2013, 9:12:17 PM (12 years ago)
Author:
ChangSeok Oh
Message:

Remove unused functions in GraphicsContext3D.cpp
https://bugs.webkit.org/show_bug.cgi?id=126265

Reviewed by Andreas Kling.

platformGraphicsContext3D, platformTexture and platformLayer in GC3D.cpp
seem not used by any ports.

No new tests, no functionality changed.

  • platform/graphics/GraphicsContext3D.cpp:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r161133 r161136  
     12013-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
    1152013-12-29  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
    216
  • trunk/Source/WebCore/platform/graphics/GraphicsContext3D.cpp

    r160713 r161136  
    18001800}
    18011801
    1802 #if !PLATFORM(BLACKBERRY) && !PLATFORM(GTK) && !PLATFORM(EFL) && !PLATFORM(MAC) && !PLATFORM(WIN) && !PLATFORM(NIX)
    1803 PlatformGraphicsContext3D GraphicsContext3D::platformGraphicsContext3D() const
    1804 {
    1805     return NullPlatformGraphicsContext3D;
    1806 }
    1807 
    1808 Platform3DObject GraphicsContext3D::platformTexture() const
    1809 {
    1810     return NullPlatform3DObject;
    1811 }
    1812 
    1813 #if USE(ACCELERATED_COMPOSITING)
    1814 PlatformLayer* GraphicsContext3D::platformLayer() const
    1815 {
    1816     return 0;
    1817 }
    1818 #endif
    1819 #endif
    1820 
    18211802} // namespace WebCore
    18221803
Note: See TracChangeset for help on using the changeset viewer.