Changeset 86454 in webkit


Ignore:
Timestamp:
May 13, 2011 12:48:16 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-05-13 Nat Duca <nduca@chromium.org>

Reviewed by James Robinson.

[chromium] compositing tests are failing
https://bugs.webkit.org/show_bug.cgi?id=60738

Remove supression for previously failing compositor tests.

  • platform/chromium/test_expectations.txt:

2011-05-13 Nat Duca <nduca@chromium.org>

Reviewed by James Robinson.

[chromium] compositing tests are failing
https://bugs.webkit.org/show_bug.cgi?id=60738

Bind texture before setting its filtering state.

  • platform/graphics/chromium/LayerTilerChromium.cpp: (WebCore::LayerTilerChromium::updateFromPixels):
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r86450 r86454  
     12011-05-13  Nat Duca  <nduca@chromium.org>
     2
     3        Reviewed by James Robinson.
     4
     5        [chromium] compositing tests are failing
     6        https://bugs.webkit.org/show_bug.cgi?id=60738
     7
     8        Remove supression for previously failing compositor tests.
     9
     10        * platform/chromium/test_expectations.txt:
     11
    1122011-05-13  Andrew Wilson  <atwilson@chromium.org>
    213
  • trunk/LayoutTests/platform/chromium/test_expectations.txt

    r86450 r86454  
    40414041BUGWK58999 MAC : fast/borders/outline-alpha-inline.html = IMAGE
    40424042
    4043 BUGWK60738 LINUX WIN : compositing/color-matching/image-color-matching.html = IMAGE+TEXT IMAGE
    4044 BUGWK60738 LINUX WIN : compositing/layers-inside-overflow-scroll.html = IMAGE+TEXT IMAGE
    4045 BUGWK60738 WIN GPU : compositing/self-painting-layers.html = IMAGE
    4046 
    40474043// Likely rebaseline needed.
    40484044BUGATWILSON LINUX WIN : svg/custom/stroke-opacity-update.svg = IMAGE
  • trunk/Source/WebCore/ChangeLog

    r86453 r86454  
     12011-05-13  Nat Duca  <nduca@chromium.org>
     2
     3        Reviewed by James Robinson.
     4
     5        [chromium] compositing tests are failing
     6        https://bugs.webkit.org/show_bug.cgi?id=60738
     7
     8        Bind texture before setting its filtering state.
     9
     10        * platform/graphics/chromium/LayerTilerChromium.cpp:
     11        (WebCore::LayerTilerChromium::updateFromPixels):
     12
    1132011-05-13  Alexey Proskuryakov  <ap@apple.com>
    214
  • trunk/Source/WebCore/platform/graphics/chromium/LayerTilerChromium.cpp

    r86301 r86454  
    345345                CRASH();
    346346
     347            tile->texture()->bindTexture();
     348
    347349            const GC3Dint filter = m_tilingData.borderTexels() ? GraphicsContext3D::LINEAR : GraphicsContext3D::NEAREST;
    348350            GLC(context, context->texParameteri(GraphicsContext3D::TEXTURE_2D, GraphicsContext3D::TEXTURE_MIN_FILTER, filter));
    349351            GLC(context, context->texParameteri(GraphicsContext3D::TEXTURE_2D, GraphicsContext3D::TEXTURE_MAG_FILTER, filter));
    350 
    351             tile->texture()->bindTexture();
    352352
    353353            if (m_useMapSubForUploads) {
Note: See TracChangeset for help on using the changeset viewer.