Title: [246196] trunk/Source/WebKit
Revision
246196
Author
carlo...@webkit.org
Date
2019-06-07 07:12:05 -0700 (Fri, 07 Jun 2019)

Log Message

Unreviewed. Fix api used to release wpe_fdo_egl_exported_image in GTK

We are using the old deprecated API in AcceleratedBackingStoreWayland::displayBuffer().

* UIProcess/gtk/AcceleratedBackingStoreWayland.cpp:
(WebKit::AcceleratedBackingStoreWayland::displayBuffer):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (246195 => 246196)


--- trunk/Source/WebKit/ChangeLog	2019-06-07 10:54:46 UTC (rev 246195)
+++ trunk/Source/WebKit/ChangeLog	2019-06-07 14:12:05 UTC (rev 246196)
@@ -1,3 +1,12 @@
+2019-06-07  Carlos Garcia Campos  <cgar...@igalia.com>
+
+        Unreviewed. Fix api used to release wpe_fdo_egl_exported_image in GTK
+
+        We are using the old deprecated API in AcceleratedBackingStoreWayland::displayBuffer().
+
+        * UIProcess/gtk/AcceleratedBackingStoreWayland.cpp:
+        (WebKit::AcceleratedBackingStoreWayland::displayBuffer):
+
 2019-06-06  Carlos Garcia Campos  <cgar...@igalia.com>
 
         REGRESSION(r243094): [GTK][WPE] Stale content after restoring the web view session

Modified: trunk/Source/WebKit/UIProcess/gtk/AcceleratedBackingStoreWayland.cpp (246195 => 246196)


--- trunk/Source/WebKit/UIProcess/gtk/AcceleratedBackingStoreWayland.cpp	2019-06-07 10:54:46 UTC (rev 246195)
+++ trunk/Source/WebKit/UIProcess/gtk/AcceleratedBackingStoreWayland.cpp	2019-06-07 14:12:05 UTC (rev 246196)
@@ -222,7 +222,7 @@
     }
 
     if (m_pendingImage)
-        wpe_view_backend_exportable_fdo_egl_dispatch_release_image(m_exportable, m_pendingImage);
+        wpe_view_backend_exportable_fdo_egl_dispatch_release_exported_image(m_exportable, m_pendingImage);
     m_pendingImage = image;
 
     m_webPage.setViewNeedsDisplay(IntRect(IntPoint::zero(), m_webPage.viewSize()));
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to