Title: [121214] trunk/Source/WebCore
Revision
121214
Author
[email protected]
Date
2012-06-25 19:02:32 -0700 (Mon, 25 Jun 2012)

Log Message

[chromium] Ensure that the compositor code which is aware of flipped status of video-textures
per platform executes on Windows.
https://bugs.webkit.org/show_bug.cgi?id=89914

Patch by Anantanarayanan G Iyengar <[email protected]> on 2012-06-25
Reviewed by James Robinson.

No new tests. (HW video decode is still only being tested manually for orientation)

* platform/graphics/chromium/cc/CCVideoLayerImpl.cpp:
(WebCore::CCVideoLayerImpl::appendQuads):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (121213 => 121214)


--- trunk/Source/WebCore/ChangeLog	2012-06-26 01:59:57 UTC (rev 121213)
+++ trunk/Source/WebCore/ChangeLog	2012-06-26 02:02:32 UTC (rev 121214)
@@ -1,3 +1,16 @@
+2012-06-25  Anantanarayanan G Iyengar  <[email protected]>
+
+        [chromium] Ensure that the compositor code which is aware of flipped status of video-textures
+        per platform executes on Windows.
+        https://bugs.webkit.org/show_bug.cgi?id=89914
+        
+        Reviewed by James Robinson.
+
+        No new tests. (HW video decode is still only being tested manually for orientation)
+
+        * platform/graphics/chromium/cc/CCVideoLayerImpl.cpp:
+        (WebCore::CCVideoLayerImpl::appendQuads):
+
 2012-06-25  Sheriff Bot  <[email protected]>
 
         Unreviewed, rolling out r121176.

Modified: trunk/Source/WebCore/platform/graphics/chromium/cc/CCVideoLayerImpl.cpp (121213 => 121214)


--- trunk/Source/WebCore/platform/graphics/chromium/cc/CCVideoLayerImpl.cpp	2012-06-26 01:59:57 UTC (rev 121213)
+++ trunk/Source/WebCore/platform/graphics/chromium/cc/CCVideoLayerImpl.cpp	2012-06-26 02:02:32 UTC (rev 121214)
@@ -213,7 +213,7 @@
         FloatRect uvRect(0, 0, 1, 1);
 #if defined(OS_CHROMEOS) && defined(__ARMEL__)
         bool flipped = true; // Under the covers, implemented by OpenMAX IL.
-#elif defined(OS_WINDOWS)
+#elif OS(WINDOWS)
         bool flipped = true; // Under the covers, implemented by DXVA.
 #else
         bool flipped = false; // LibVA (cros/intel), MacOS.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to