Title: [92867] trunk/Source/WebCore
Revision
92867
Author
[email protected]
Date
2011-08-11 10:23:49 -0700 (Thu, 11 Aug 2011)

Log Message

[Chromium] Temporarily disable layer anti-aliasing on ChromeOS.
https://bugs.webkit.org/show_bug.cgi?id=65922

Patch by David Reveman <[email protected]> on 2011-08-11
Reviewed by James Robinson.

No new tests.

* platform/graphics/chromium/LayerTilerChromium.cpp:
(WebCore::LayerTilerChromium::draw):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (92866 => 92867)


--- trunk/Source/WebCore/ChangeLog	2011-08-11 17:19:55 UTC (rev 92866)
+++ trunk/Source/WebCore/ChangeLog	2011-08-11 17:23:49 UTC (rev 92867)
@@ -1,3 +1,15 @@
+2011-08-11  David Reveman  <[email protected]>
+
+        [Chromium] Temporarily disable layer anti-aliasing on ChromeOS.
+        https://bugs.webkit.org/show_bug.cgi?id=65922
+
+        Reviewed by James Robinson.
+
+        No new tests.
+
+        * platform/graphics/chromium/LayerTilerChromium.cpp:
+        (WebCore::LayerTilerChromium::draw):
+
 2011-08-11  Benjamin Poulain  <[email protected]>
 
         [Qt] PageSerializer is specific to MHTML, we should not compile it

Modified: trunk/Source/WebCore/platform/graphics/chromium/LayerTilerChromium.cpp (92866 => 92867)


--- trunk/Source/WebCore/platform/graphics/chromium/LayerTilerChromium.cpp	2011-08-11 17:19:55 UTC (rev 92866)
+++ trunk/Source/WebCore/platform/graphics/chromium/LayerTilerChromium.cpp	2011-08-11 17:23:49 UTC (rev 92867)
@@ -377,9 +377,14 @@
     if (m_skipsDraw || !m_tiles.size() || contentRect.isEmpty())
         return;
 
+#if defined(OS_CHROMEOS)
+    // FIXME: Disable anti-aliasing to workaround broken driver.
+    bool useAA = false;
+#else
     // Use anti-aliasing programs when border texels are preset and transform
     // is not an integer translation.
     bool useAA = (m_tilingData.borderTexels() && !globalTransform.isIntegerTranslation());
+#endif
 
     switch (m_sampledTexelFormat) {
     case LayerTextureUpdater::SampledTexelFormatRGBA:
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to