Changeset 259164 in webkit


Ignore:
Timestamp:
Mar 28, 2020 3:13:37 PM (4 years ago)
Author:
Fujii Hironori
Message:

[WinCairo] Unreviewed build fix for WinCairo Debug builds
https://bugs.webkit.org/show_bug.cgi?id=209098

It's broken since r259139 (Bug 209098).

..\..\Source\WebCore\platform\graphics\texmap\TextureMapperGC3DPlatformLayer.cpp(101): error C2065: 'm_state': undeclared identifier

  • platform/graphics/texmap/TextureMapperGC3DPlatformLayer.cpp:

(WebCore::TextureMapperGC3DPlatformLayer::paintToTextureMapper): Replaced 'm_state' with 'm_context.m_state'.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r259163 r259164  
     12020-03-28  Fujii Hironori  <Hironori.Fujii@sony.com>
     2
     3        [WinCairo] Unreviewed build fix for WinCairo Debug builds
     4        https://bugs.webkit.org/show_bug.cgi?id=209098
     5
     6        It's broken since r259139 (Bug 209098).
     7
     8        > ..\..\Source\WebCore\platform\graphics\texmap\TextureMapperGC3DPlatformLayer.cpp(101): error C2065: 'm_state': undeclared identifier
     9
     10        * platform/graphics/texmap/TextureMapperGC3DPlatformLayer.cpp:
     11        (WebCore::TextureMapperGC3DPlatformLayer::paintToTextureMapper): Replaced 'm_state' with 'm_context.m_state'.
     12
    1132020-03-28  Wenson Hsieh  <wenson_hsieh@apple.com>
    214
  • trunk/Source/WebCore/platform/graphics/texmap/TextureMapperGC3DPlatformLayer.cpp

    r259139 r259164  
    9999#if USE(TEXTURE_MAPPER_GL)
    100100    auto attrs = m_context.contextAttributes();
    101     ASSERT(m_state.boundReadFBO == m_state.boundDrawFBO);
     101    ASSERT(m_context.m_state.boundReadFBO == m_context.m_state.boundDrawFBO);
    102102    if (attrs.antialias && m_context.m_state.boundDrawFBO == m_context.m_multisampleFBO) {
    103103        GLContext* previousActiveContext = GLContext::current();
Note: See TracChangeset for help on using the changeset viewer.