Title: [264923] trunk
Revision
264923
Author
be...@igalia.com
Date
2020-07-27 08:44:10 -0700 (Mon, 27 Jul 2020)

Log Message

[GTK] Default to OpenGL ES in arm
https://bugs.webkit.org/show_bug.cgi?id=214828

Reviewed by Carlos Garcia Campos.

* Source/cmake/OptionsGTK.cmake:

Modified Paths

Diff

Modified: trunk/ChangeLog (264922 => 264923)


--- trunk/ChangeLog	2020-07-27 15:09:39 UTC (rev 264922)
+++ trunk/ChangeLog	2020-07-27 15:44:10 UTC (rev 264923)
@@ -1,3 +1,12 @@
+2020-07-27  Alberto Garcia  <be...@igalia.com>
+
+        [GTK] Default to OpenGL ES in arm
+        https://bugs.webkit.org/show_bug.cgi?id=214828
+
+        Reviewed by Carlos Garcia Campos.
+
+        * Source/cmake/OptionsGTK.cmake:
+
 2020-07-24  Yusuke Suzuki  <ysuz...@apple.com>
 
         Add project.pbxproj editorconfig entry

Modified: trunk/Source/cmake/OptionsGTK.cmake (264922 => 264923)


--- trunk/Source/cmake/OptionsGTK.cmake	2020-07-27 15:09:39 UTC (rev 264922)
+++ trunk/Source/cmake/OptionsGTK.cmake	2020-07-27 15:44:10 UTC (rev 264923)
@@ -79,7 +79,7 @@
 # or OPENGLES2 (ENABLE_GLES2=ON) for building the feature.
 set(ENABLE_GLES2_DEFAULT OFF)
 
-if (NOT OPENGL_FOUND AND OPENGLES2_FOUND)
+if (OPENGLES2_FOUND AND (NOT OPENGL_FOUND OR WTF_CPU_ARM OR WTF_CPU_ARM64))
     set(ENABLE_GLES2_DEFAULT ON)
 endif ()
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to