Title: [275893] trunk/Source/WebKit
Revision
275893
Author
cdu...@apple.com
Date
2021-04-13 10:42:34 -0700 (Tue, 13 Apr 2021)

Log Message

Fix typo in GPUProcessConnection::enableVP9Decoders()
https://bugs.webkit.org/show_bug.cgi?id=224491

Reviewed by Darin Adler.

* WebProcess/GPU/GPUProcessConnection.cpp:
(WebKit::GPUProcessConnection::enableVP9Decoders):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (275892 => 275893)


--- trunk/Source/WebKit/ChangeLog	2021-04-13 16:55:33 UTC (rev 275892)
+++ trunk/Source/WebKit/ChangeLog	2021-04-13 17:42:34 UTC (rev 275893)
@@ -1,3 +1,13 @@
+2021-04-13  Chris Dumez  <cdu...@apple.com>
+
+        Fix typo in GPUProcessConnection::enableVP9Decoders()
+        https://bugs.webkit.org/show_bug.cgi?id=224491
+
+        Reviewed by Darin Adler.
+
+        * WebProcess/GPU/GPUProcessConnection.cpp:
+        (WebKit::GPUProcessConnection::enableVP9Decoders):
+
 2021-04-13  Commit Queue  <commit-qu...@webkit.org>
 
         Unreviewed, reverting r275889.

Modified: trunk/Source/WebKit/WebProcess/GPU/GPUProcessConnection.cpp (275892 => 275893)


--- trunk/Source/WebKit/WebProcess/GPU/GPUProcessConnection.cpp	2021-04-13 16:55:33 UTC (rev 275892)
+++ trunk/Source/WebKit/WebProcess/GPU/GPUProcessConnection.cpp	2021-04-13 17:42:34 UTC (rev 275893)
@@ -268,7 +268,7 @@
     if (m_enableVP8Decoder == enableVP8Decoder && m_enableVP9Decoder == enableVP9Decoder && m_enableVP9SWDecoder == enableVP9SWDecoder)
         return;
 
-    m_enableVP9Decoder = enableVP8Decoder;
+    m_enableVP8Decoder = enableVP8Decoder;
     m_enableVP9Decoder = enableVP9Decoder;
     m_enableVP9SWDecoder = enableVP9SWDecoder;
     connection().send(Messages::GPUConnectionToWebProcess::EnableVP9Decoders(enableVP8Decoder, enableVP9Decoder, enableVP9SWDecoder), { });
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to