Changeset 121793 in webkit


Ignore:
Timestamp:
Jul 3, 2012 11:59:52 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[TextureMapper] Typo in edge-distance anti-aliasing code
https://bugs.webkit.org/show_bug.cgi?id=90475

Patch by Sergio Villar Senin <svillar@igalia.com> on 2012-07-03
Reviewed by Martin Robinson.

No new tests. This just fixes a typo.

  • platform/graphics/texmap/TextureMapperGL.cpp:

(WebCore::TextureMapperGL::drawQuad):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r121792 r121793  
     12012-07-03  Sergio Villar Senin  <svillar@igalia.com>
     2
     3        [TextureMapper] Typo in edge-distance anti-aliasing code
     4        https://bugs.webkit.org/show_bug.cgi?id=90475
     5
     6        Reviewed by Martin Robinson.
     7
     8        No new tests. This just fixes a typo.
     9
     10        * platform/graphics/texmap/TextureMapperGL.cpp:
     11        (WebCore::TextureMapperGL::drawQuad):
     12
    1132012-06-27  Vsevolod Vlasov  <vsevik@chromium.org>
    214
  • trunk/Source/WebCore/platform/graphics/texmap/TextureMapperGL.cpp

    r121729 r121793  
    312312
    313313    const GLfloat quad[] = {
    314         quadToDraw.targetRectMappedToUnitSquare.p1().x(), quadToDraw.targetRectMappedToUnitSquare.p1().x(),
     314        quadToDraw.targetRectMappedToUnitSquare.p1().x(), quadToDraw.targetRectMappedToUnitSquare.p1().y(),
    315315        quadToDraw.targetRectMappedToUnitSquare.p2().x(), quadToDraw.targetRectMappedToUnitSquare.p2().y(),
    316316        quadToDraw.targetRectMappedToUnitSquare.p3().x(), quadToDraw.targetRectMappedToUnitSquare.p3().y(),
Note: See TracChangeset for help on using the changeset viewer.