Title: [280962] trunk/Source/ThirdParty/ANGLE
Revision
280962
Author
[email protected]
Date
2021-08-12 06:01:27 -0700 (Thu, 12 Aug 2021)

Log Message

ANGLE Cocoa compiles contents of ContextEAGL on mac
https://bugs.webkit.org/show_bug.cgi?id=228987

Patch by Kimmo Kinnunen <[email protected]> on 2021-08-12
Reviewed by Kenneth Russell.

Add include guards that are consistent with other EAGL files.

* src/libANGLE/renderer/gl/eagl/ContextEAGL.cpp:

Modified Paths

Diff

Modified: trunk/Source/ThirdParty/ANGLE/ChangeLog (280961 => 280962)


--- trunk/Source/ThirdParty/ANGLE/ChangeLog	2021-08-12 11:43:55 UTC (rev 280961)
+++ trunk/Source/ThirdParty/ANGLE/ChangeLog	2021-08-12 13:01:27 UTC (rev 280962)
@@ -1,5 +1,16 @@
 2021-08-12  Kimmo Kinnunen  <[email protected]>
 
+        ANGLE Cocoa compiles contents of ContextEAGL on mac
+        https://bugs.webkit.org/show_bug.cgi?id=228987
+
+        Reviewed by Kenneth Russell.
+
+        Add include guards that are consistent with other EAGL files.
+
+        * src/libANGLE/renderer/gl/eagl/ContextEAGL.cpp:
+
+2021-08-12  Kimmo Kinnunen  <[email protected]>
+
         ANGLE Cocoa compiles parts of HLSL translator, vulkan translator, libgl api, capture redundantly
         https://bugs.webkit.org/show_bug.cgi?id=228986
 

Modified: trunk/Source/ThirdParty/ANGLE/src/libANGLE/renderer/gl/eagl/ContextEAGL.cpp (280961 => 280962)


--- trunk/Source/ThirdParty/ANGLE/src/libANGLE/renderer/gl/eagl/ContextEAGL.cpp	2021-08-12 11:43:55 UTC (rev 280961)
+++ trunk/Source/ThirdParty/ANGLE/src/libANGLE/renderer/gl/eagl/ContextEAGL.cpp	2021-08-12 13:01:27 UTC (rev 280962)
@@ -8,6 +8,10 @@
 //   iOS-specific subclass of ContextGL.
 //
 
+#import "common/platform.h"
+
+#if defined(ANGLE_ENABLE_EAGL)
+
 #include "libANGLE/renderer/gl/eagl/ContextEAGL.h"
 
 #include "libANGLE/Context.h"
@@ -24,3 +28,5 @@
 {}
 
 }  // namespace rx
+
+#endif  // defined(ANGLE_ENABLE_EAGL)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to