Title: [277241] trunk/Source/ThirdParty/ANGLE
- Revision
- 277241
- Author
- [email protected]
- Date
- 2021-05-08 21:31:43 -0700 (Sat, 08 May 2021)
Log Message
[WinCairo] Remove linker warning on ANGLE
https://bugs.webkit.org/show_bug.cgi?id=225501
Reviewed by Darin Adler.
libANGLE is statically linked to libGLESv2.dll so that __declspec(dllimport) is not required here.
* include/platform/PlatformMethods.h:
Modified Paths
Diff
Modified: trunk/Source/ThirdParty/ANGLE/ChangeLog (277240 => 277241)
--- trunk/Source/ThirdParty/ANGLE/ChangeLog 2021-05-09 04:15:21 UTC (rev 277240)
+++ trunk/Source/ThirdParty/ANGLE/ChangeLog 2021-05-09 04:31:43 UTC (rev 277241)
@@ -1,3 +1,14 @@
+2021-05-08 Basuke Suzuki <[email protected]>
+
+ [WinCairo] Remove linker warning on ANGLE
+ https://bugs.webkit.org/show_bug.cgi?id=225501
+
+ Reviewed by Darin Adler.
+
+ libANGLE is statically linked to libGLESv2.dll so that __declspec(dllimport) is not required here.
+
+ * include/platform/PlatformMethods.h:
+
2021-05-06 Kyle Piddington <[email protected]>
[Metal ANGLE] Only clear dirty state bits after all state has been successfully set
Modified: trunk/Source/ThirdParty/ANGLE/include/platform/PlatformMethods.h (277240 => 277241)
--- trunk/Source/ThirdParty/ANGLE/include/platform/PlatformMethods.h 2021-05-09 04:15:21 UTC (rev 277240)
+++ trunk/Source/ThirdParty/ANGLE/include/platform/PlatformMethods.h 2021-05-09 04:31:43 UTC (rev 277241)
@@ -16,13 +16,7 @@
#define EGL_PLATFORM_ANGLE_PLATFORM_METHODS_ANGLEX 0x3482
#if !defined(ANGLE_PLATFORM_EXPORT)
-# if defined(_WIN32)
-# if !defined(LIBANGLE_IMPLEMENTATION)
-# define ANGLE_PLATFORM_EXPORT __declspec(dllimport)
-# else
-# define ANGLE_PLATFORM_EXPORT __declspec(dllexport)
-# endif
-# elif defined(__GNUC__) || defined(__clang__)
+# if defined(__GNUC__) || defined(__clang__)
# define ANGLE_PLATFORM_EXPORT __attribute__((visibility("default")))
# endif
#endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes