Changeset 95001 in webkit


Ignore:
Timestamp:
Sep 12, 2011 8:02:04 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

Patch by Hyowon Kim <hw1008.kim@samsung.com> on 2011-09-12
Reviewed by Eric Seidel.

[CMAKE] Remove platform/graphics/opengl/*OpenGL.cpp files in CMakeLists.txt
https://bugs.webkit.org/show_bug.cgi?id=62707

No change in fuctionality so no new tests.

Bug 62376 makes all ports use GraphicsContext3DOpenGL and
Extensions3DOpenGL when enabling WebGL.
However, some ports already have their own GC3D implementation.
In QT and chromium, for example, GC3D delegates to GC3DInternal.
So, it would be better to allow each port to decide whether or not
to include files in platform/graphics/opengl.

  • CMakeLists.txt:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/CMakeLists.txt

    r94694 r95001  
    20942094        ${THIRDPARTY_DIR}/ANGLE/include
    20952095        ${THIRDPARTY_DIR}/ANGLE/include/GLSLANG
     2096        ${WEBCORE_DIR}/platform/graphics/gpu
    20962097    )
    20972098    LIST(APPEND WebCore_LIBRARIES
     
    21572158
    21582159        platform/graphics/ANGLEWebKitBridge.cpp
     2160        platform/graphics/GraphicsContext3D.cpp
     2161       
    21592162        platform/graphics/gpu/DrawingBuffer.cpp
    2160         platform/graphics/GraphicsContext3D.cpp
    2161         platform/graphics/opengl/Extensions3DOpenGL.cpp
    2162         platform/graphics/opengl/GraphicsContext3DOpenGL.cpp
    21632163    )
    21642164ENDIF ()
  • trunk/Source/WebCore/ChangeLog

    r94991 r95001  
     12011-09-12  Hyowon Kim  <hw1008.kim@samsung.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [CMAKE] Remove platform/graphics/opengl/*OpenGL.cpp files in CMakeLists.txt
     6        https://bugs.webkit.org/show_bug.cgi?id=62707
     7
     8        No change in fuctionality so no new tests.
     9
     10        Bug 62376 makes all ports use GraphicsContext3DOpenGL and
     11        Extensions3DOpenGL when enabling WebGL.
     12        However, some ports already have their own GC3D implementation.
     13        In QT and chromium, for example, GC3D delegates to GC3DInternal.
     14        So, it would be better to allow each port to decide whether or not
     15        to include files in platform/graphics/opengl.
     16
     17        * CMakeLists.txt:
     18
    1192011-09-12  Dan Bernstein  <mitz@apple.com>
    220
Note: See TracChangeset for help on using the changeset viewer.