Changeset 152276 in webkit


Ignore:
Timestamp:
Jul 1, 2013 6:01:42 PM (11 years ago)
Author:
achristensen@apple.com
Message:

Windows should be included in the list of platforms that can use OpenGL ES 2.
https://bugs.webkit.org/show_bug.cgi?id=118264

Reviewed by Dean Jackson.

  • platform/graphics/GraphicsContext3D.h: Added PLATFORM(WIN) to platforms using OpenGL ES 2.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r152275 r152276  
     12013-07-01  Alex Christensen  <achristensen@apple.com>
     2
     3        Windows should be included in the list of platforms that can use OpenGL ES 2.
     4        https://bugs.webkit.org/show_bug.cgi?id=118264
     5
     6        Reviewed by Dean Jackson.
     7
     8        * platform/graphics/GraphicsContext3D.h: Added PLATFORM(WIN) to platforms using OpenGL ES 2.
     9
    1102013-07-01  Gustavo Noronha Silva  <gustavo.noronha@collabora.com>
    211
  • trunk/Source/WebCore/platform/graphics/GraphicsContext3D.h

    r152220 r152276  
    10191019#endif
    10201020
    1021 #if PLATFORM(BLACKBERRY) || (PLATFORM(QT) && defined(QT_OPENGL_ES_2)) || ((PLATFORM(GTK) || PLATFORM(EFL)) && USE(OPENGL_ES_2))
     1021#if PLATFORM(BLACKBERRY) || (PLATFORM(QT) && defined(QT_OPENGL_ES_2)) || ((PLATFORM(GTK) || PLATFORM(EFL) || PLATFORM(WIN)) && USE(OPENGL_ES_2))
    10221022    friend class Extensions3DOpenGLES;
    10231023    OwnPtr<Extensions3DOpenGLES> m_extensions;
Note: See TracChangeset for help on using the changeset viewer.