Title: [294155] trunk/Source/WebCore
Revision
294155
Author
commit-qu...@webkit.org
Date
2022-05-13 04:41:32 -0700 (Fri, 13 May 2022)

Log Message

[GTK][WPE] Remove leftover for WINDOWS support in GraphicsContextGLGBM
https://bugs.webkit.org/show_bug.cgi?id=240314

GBM is a Linux technology we would need another sharing buffers
technology to add support in Windows. This is leftover from the
code copied originally.

Patch by Alejandro G. Castro <a...@igalia.com> on 2022-05-13
Reviewed by Žan Doberšek.

No new tests, we are just removing some compilation option.

* platform/graphics/gbm/GraphicsContextGLGBM.cpp:
(WebCore::GraphicsContextGLGBM::platformInitializeContext):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (294154 => 294155)


--- trunk/Source/WebCore/ChangeLog	2022-05-13 11:30:39 UTC (rev 294154)
+++ trunk/Source/WebCore/ChangeLog	2022-05-13 11:41:32 UTC (rev 294155)
@@ -1,3 +1,20 @@
+2022-05-13  Alejandro G. Castro  <a...@igalia.com>
+
+
+        [GTK][WPE] Remove leftover for WINDOWS support in GraphicsContextGLGBM
+        https://bugs.webkit.org/show_bug.cgi?id=240314
+
+        GBM is a Linux technology we would need another sharing buffers
+        technology to add support in Windows. This is leftover from the
+        code copied originally.
+
+        Reviewed by Žan Doberšek.
+
+        No new tests, we are just removing some compilation option.
+
+        * platform/graphics/gbm/GraphicsContextGLGBM.cpp:
+        (WebCore::GraphicsContextGLGBM::platformInitializeContext):
+
 2022-05-13  Lauro Moura  <lmo...@igalia.com>
 
         Unreviewed, non-unified build fixes

Modified: trunk/Source/WebCore/platform/graphics/gbm/GraphicsContextGLGBM.cpp (294154 => 294155)


--- trunk/Source/WebCore/platform/graphics/gbm/GraphicsContextGLGBM.cpp	2022-05-13 11:30:39 UTC (rev 294154)
+++ trunk/Source/WebCore/platform/graphics/gbm/GraphicsContextGLGBM.cpp	2022-05-13 11:41:32 UTC (rev 294155)
@@ -203,11 +203,9 @@
 #endif
 
     Vector<EGLint> displayAttributes {
-#if !OS(WINDOWS)
         EGL_PLATFORM_ANGLE_TYPE_ANGLE, EGL_PLATFORM_ANGLE_TYPE_OPENGLES_ANGLE,
         EGL_PLATFORM_ANGLE_DEVICE_TYPE_ANGLE, EGL_PLATFORM_ANGLE_DEVICE_TYPE_EGL_ANGLE,
         EGL_PLATFORM_ANGLE_NATIVE_PLATFORM_TYPE_ANGLE, EGL_PLATFORM_SURFACELESS_MESA,
-#endif
         EGL_NONE,
     };
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to