Title: [279990] trunk/Source/WebCore
Revision
279990
Author
[email protected]
Date
2021-07-16 11:02:46 -0700 (Fri, 16 Jul 2021)

Log Message

Make the lack of an ANGLE dylib unconditionally log
https://bugs.webkit.org/show_bug.cgi?id=228010

Reviewed by Dean Jackson.

WebCore should complain louder when all of WebGL is disabled because of a packaging misconfiguration.

No new tests because there is no behavior change.

* platform/graphics/cocoa/GraphicsContextGLOpenGLCocoa.mm:
(WebCore::GraphicsContextGLOpenGL::create):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (279989 => 279990)


--- trunk/Source/WebCore/ChangeLog	2021-07-16 17:59:12 UTC (rev 279989)
+++ trunk/Source/WebCore/ChangeLog	2021-07-16 18:02:46 UTC (rev 279990)
@@ -1,3 +1,17 @@
+2021-07-16  Myles C. Maxfield  <[email protected]>
+
+        Make the lack of an ANGLE dylib unconditionally log
+        https://bugs.webkit.org/show_bug.cgi?id=228010
+
+        Reviewed by Dean Jackson.
+
+        WebCore should complain louder when all of WebGL is disabled because of a packaging misconfiguration.
+
+        No new tests because there is no behavior change.
+
+        * platform/graphics/cocoa/GraphicsContextGLOpenGLCocoa.mm:
+        (WebCore::GraphicsContextGLOpenGL::create):
+
 2021-07-16  Megan Gardner  <[email protected]>
 
         Pipe App Highlight scrolling through UI Process in preparation for Note Overlay avoidance.

Modified: trunk/Source/WebCore/platform/graphics/cocoa/GraphicsContextGLOpenGLCocoa.mm (279989 => 279990)


--- trunk/Source/WebCore/platform/graphics/cocoa/GraphicsContextGLOpenGLCocoa.mm	2021-07-16 17:59:12 UTC (rev 279989)
+++ trunk/Source/WebCore/platform/graphics/cocoa/GraphicsContextGLOpenGLCocoa.mm	2021-07-16 18:02:46 UTC (rev 279990)
@@ -169,7 +169,7 @@
 {
     // If ANGLE is not loaded, we can fail immediately.
     if (!isANGLEAvailable()) {
-        LOG(WebGL, "ANGLE shared library was not loaded. Can't make GraphicsContextGL.");
+        WTFLogAlways("ANGLE shared library was not loaded. Can't make GraphicsContextGL.");
         return nullptr;
     }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to