Title: [260754] trunk/Source/WebKit
- Revision
- 260754
- Author
- [email protected]
- Date
- 2020-04-27 08:27:30 -0700 (Mon, 27 Apr 2020)
Log Message
[WPE] about:gpu page is incomplete
https://bugs.webkit.org/show_bug.cgi?id=211076
Patch by Philippe Normand <[email protected]> on 2020-04-27
Reviewed by Adrian Perez de Castro.
ENABLE(OPENGL) was renamed to ENABLE(GRAPHICS_CONTEXT_GL) in
r254064 but not in all the code base...
* UIProcess/API/glib/WebKitProtocolHandler.cpp:
(WebKit::WebKitProtocolHandler::handleGPU):
Modified Paths
Diff
Modified: trunk/Source/WebKit/ChangeLog (260753 => 260754)
--- trunk/Source/WebKit/ChangeLog 2020-04-27 15:05:00 UTC (rev 260753)
+++ trunk/Source/WebKit/ChangeLog 2020-04-27 15:27:30 UTC (rev 260754)
@@ -1,3 +1,16 @@
+2020-04-27 Philippe Normand <[email protected]>
+
+ [WPE] about:gpu page is incomplete
+ https://bugs.webkit.org/show_bug.cgi?id=211076
+
+ Reviewed by Adrian Perez de Castro.
+
+ ENABLE(OPENGL) was renamed to ENABLE(GRAPHICS_CONTEXT_GL) in
+ r254064 but not in all the code base...
+
+ * UIProcess/API/glib/WebKitProtocolHandler.cpp:
+ (WebKit::WebKitProtocolHandler::handleGPU):
+
2020-04-26 Darin Adler <[email protected]>
Replace more uses of live ranges with SimpleRange
Modified: trunk/Source/WebKit/UIProcess/API/glib/WebKitProtocolHandler.cpp (260753 => 260754)
--- trunk/Source/WebKit/UIProcess/API/glib/WebKitProtocolHandler.cpp 2020-04-27 15:05:00 UTC (rev 260753)
+++ trunk/Source/WebKit/UIProcess/API/glib/WebKitProtocolHandler.cpp 2020-04-27 15:27:30 UTC (rev 260754)
@@ -346,7 +346,7 @@
" </tbody></tr>",
hardwareAccelerationPolicy(request));
-#if ENABLE(OPENGL)
+#if ENABLE(GRAPHICS_CONTEXT_GL)
g_string_append_printf(html,
" <tbody><tr>"
" <td><div class=\"titlename\">WebGL enabled</div></td>"
@@ -480,7 +480,7 @@
eglQueryString(eglDisplay, EGL_EXTENSIONS));
}
#endif
-#endif // ENABLE(OPENGL)
+#endif // ENABLE(GRAPHICS_CONTEXT_GL)
g_string_append(html, "<table>");
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes