Changeset 183639 in webkit


Ignore:
Timestamp:
Apr 30, 2015 12:04:36 PM (9 years ago)
Author:
Brent Fulgham
Message:

[Win] Allow WebKit to build without ANGLE support
https://bugs.webkit.org/show_bug.cgi?id=144459
<rdar://problem/20707307>

Reviewed by Dean Jackson.

  • platform/graphics/GLContext.cpp: Use the ENABLE(GRAPHICS_CONTEXT_3D)

macro to avoid compiling this code if not using WEBGL/3D contexts.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r183636 r183639  
     12015-04-30  Brent Fulgham  <bfulgham@apple.com>
     2
     3        [Win] Allow WebKit to build without ANGLE support
     4        https://bugs.webkit.org/show_bug.cgi?id=144459
     5        <rdar://problem/20707307>
     6
     7        Reviewed by Dean Jackson.
     8
     9        * platform/graphics/GLContext.cpp: Use the ENABLE(GRAPHICS_CONTEXT_3D)
     10        macro to avoid compiling this code if not using WEBGL/3D contexts.
     11
    1122015-04-29  David Hyatt  <hyatt@apple.com>
    213
  • trunk/Source/WebCore/platform/graphics/GLContext.cpp

    r181322 r183639  
    1818
    1919#include "config.h"
     20
     21#if ENABLE(GRAPHICS_CONTEXT_3D)
     22
    2023#include "GLContext.h"
    2124
     
    198201} // namespace WebCore
    199202
    200 
     203#endif
Note: See TracChangeset for help on using the changeset viewer.