⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 101046 in webkit


Ignore:
Timestamp:
Nov 23, 2011, 12:26:17 AM (15 years ago)
Author:
commit-queue@webkit.org
Message:

Use new name for pixel config field of GrTextureDesc
https://bugs.webkit.org/show_bug.cgi?id=72543

Patch by Brian Salomon <bsalomon@google.com> on 2011-11-23
Reviewed by Stephen White.

Tested by every canvas2d layout test.

  • platform/graphics/skia/ImageBufferSkia.cpp:

(WebCore::createAcceleratedCanvas):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r101045 r101046  
     12011-11-23  Brian Salomon  <bsalomon@google.com>
     2
     3        Use new name for pixel config field of GrTextureDesc
     4        https://bugs.webkit.org/show_bug.cgi?id=72543
     5
     6        Reviewed by Stephen White.
     7
     8        Tested by every canvas2d layout test.
     9
     10        * platform/graphics/skia/ImageBufferSkia.cpp:
     11        (WebCore::createAcceleratedCanvas):
     12
    1132011-11-23  Emil A Eklund  <eae@chromium.org>
    214
  • trunk/Source/WebCore/platform/graphics/skia/ImageBufferSkia.cpp

    r99763 r101046  
    8080    desc.fWidth = size.width();
    8181    desc.fHeight = size.height();
    82     desc.fFormat = kRGBA_8888_GrPixelConfig;
     82    desc.fConfig = kRGBA_8888_GrPixelConfig;
    8383    SkAutoTUnref<GrTexture> texture(gr->createUncachedTexture(desc, 0, 0));
    8484    if (!texture.get())
Note: See TracChangeset for help on using the changeset viewer.