Changeset 181281 in webkit


Ignore:
Timestamp:
Mar 9, 2015 1:51:51 PM (9 years ago)
Author:
Csaba Osztrogonác
Message:

Fix the !ENABLE(WEBGL) build after r180609
https://bugs.webkit.org/show_bug.cgi?id=142057

Reviewed by Darin Adler.

  • platform/graphics/opengl/GraphicsContext3DOpenGLCommon.cpp:

(WebCore::GraphicsContext3D::forceContextLost):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r181279 r181281  
     12015-03-09  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        Fix the !ENABLE(WEBGL) build after r180609
     4        https://bugs.webkit.org/show_bug.cgi?id=142057
     5
     6        Reviewed by Darin Adler.
     7
     8        * platform/graphics/opengl/GraphicsContext3DOpenGLCommon.cpp:
     9        (WebCore::GraphicsContext3D::forceContextLost):
     10
    1112015-03-09  Myles C. Maxfield  <mmaxfield@apple.com>
    212
  • trunk/Source/WebCore/platform/graphics/opengl/GraphicsContext3DOpenGLCommon.cpp

    r180609 r181281  
    17701770void GraphicsContext3D::forceContextLost()
    17711771{
     1772#if ENABLE(WEBGL)
    17721773    if (m_webglContext)
    17731774        m_webglContext->forceLostContext(WebGLRenderingContextBase::RealLostContext);
     1775#endif
    17741776}
    17751777
Note: See TracChangeset for help on using the changeset viewer.