Changeset 69450 in webkit


Ignore:
Timestamp:
Oct 9, 2010 11:11:14 AM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-10-09 Kwang Yul Seo <skyul@company100.net>

Reviewed by Andreas Kling.

Add ENABLE(ACCELERATED_2D_CANVAS) guard for m_uploadTexture
https://bugs.webkit.org/show_bug.cgi?id=47114

PlatformContextSkia's m_uploadTexture is used only in code guarded with ENABLE(ACCELERATED_2D_CANVAS).

  • platform/graphics/skia/PlatformContextSkia.h:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r69449 r69450  
     12010-10-09  Kwang Yul Seo  <skyul@company100.net>
     2
     3        Reviewed by Andreas Kling.
     4
     5        Add ENABLE(ACCELERATED_2D_CANVAS) guard for m_uploadTexture
     6        https://bugs.webkit.org/show_bug.cgi?id=47114
     7
     8        PlatformContextSkia's m_uploadTexture is used only in code guarded with ENABLE(ACCELERATED_2D_CANVAS).
     9
     10        * platform/graphics/skia/PlatformContextSkia.h:
     11
    1122010-10-09  Patrick Gansterer  <paroga@webkit.org>
    213
  • trunk/WebCore/platform/graphics/skia/PlatformContextSkia.h

    r68865 r69450  
    230230#if ENABLE(ACCELERATED_2D_CANVAS)
    231231    OwnPtr<GLES2Canvas> m_gpuCanvas;
     232    mutable RefPtr<Texture> m_uploadTexture;
    232233#endif
    233234    mutable enum { None, Software, Mixed, Hardware } m_backingStoreState;
    234     mutable RefPtr<Texture> m_uploadTexture;
    235235    mutable IntRect m_softwareDirtyRect;
    236236};
Note: See TracChangeset for help on using the changeset viewer.