1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-17 14:11:06 +00:00

[X11] Add support for using EGL/GLES instead of GLX.

This commit is contained in:
bruvzg
2023-09-22 10:55:55 +03:00
parent f5696c311c
commit af00c4a54a
10 changed files with 215 additions and 15 deletions

View File

@@ -4473,7 +4473,7 @@ String EditorNode::_get_system_info() const {
}
if (driver_name == "vulkan") {
driver_name = "Vulkan";
} else if (driver_name == "opengl3") {
} else if (driver_name.begins_with("opengl3")) {
driver_name = "GLES3";
}