Title: [121793] trunk/Source/WebCore
- Revision
- 121793
- Author
- [email protected]
- Date
- 2012-07-03 11:59:52 -0700 (Tue, 03 Jul 2012)
Log Message
[TextureMapper] Typo in edge-distance anti-aliasing code
https://bugs.webkit.org/show_bug.cgi?id=90475
Patch by Sergio Villar Senin <[email protected]> on 2012-07-03
Reviewed by Martin Robinson.
No new tests. This just fixes a typo.
* platform/graphics/texmap/TextureMapperGL.cpp:
(WebCore::TextureMapperGL::drawQuad):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (121792 => 121793)
--- trunk/Source/WebCore/ChangeLog 2012-07-03 17:51:27 UTC (rev 121792)
+++ trunk/Source/WebCore/ChangeLog 2012-07-03 18:59:52 UTC (rev 121793)
@@ -1,3 +1,15 @@
+2012-07-03 Sergio Villar Senin <[email protected]>
+
+ [TextureMapper] Typo in edge-distance anti-aliasing code
+ https://bugs.webkit.org/show_bug.cgi?id=90475
+
+ Reviewed by Martin Robinson.
+
+ No new tests. This just fixes a typo.
+
+ * platform/graphics/texmap/TextureMapperGL.cpp:
+ (WebCore::TextureMapperGL::drawQuad):
+
2012-06-27 Vsevolod Vlasov <[email protected]>
Web Inspector: [Extensions API] Resource manipulations should be based on UISourceCode thus extending Sources Panel.
Modified: trunk/Source/WebCore/platform/graphics/texmap/TextureMapperGL.cpp (121792 => 121793)
--- trunk/Source/WebCore/platform/graphics/texmap/TextureMapperGL.cpp 2012-07-03 17:51:27 UTC (rev 121792)
+++ trunk/Source/WebCore/platform/graphics/texmap/TextureMapperGL.cpp 2012-07-03 18:59:52 UTC (rev 121793)
@@ -311,7 +311,7 @@
GL_CMD(glBindBuffer(GL_ARRAY_BUFFER, 0));
const GLfloat quad[] = {
- quadToDraw.targetRectMappedToUnitSquare.p1().x(), quadToDraw.targetRectMappedToUnitSquare.p1().x(),
+ quadToDraw.targetRectMappedToUnitSquare.p1().x(), quadToDraw.targetRectMappedToUnitSquare.p1().y(),
quadToDraw.targetRectMappedToUnitSquare.p2().x(), quadToDraw.targetRectMappedToUnitSquare.p2().y(),
quadToDraw.targetRectMappedToUnitSquare.p3().x(), quadToDraw.targetRectMappedToUnitSquare.p3().y(),
quadToDraw.targetRectMappedToUnitSquare.p4().x(), quadToDraw.targetRectMappedToUnitSquare.p4().y()
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes