diff options
author | Juan Linietsky <reduzio@gmail.com> | 2019-06-07 13:07:57 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2020-02-11 11:53:26 +0100 |
commit | fd188ddd5176390efb22ed041d8aedad25d81dee (patch) | |
tree | 18766edace54f7e3e5ed5c1efe1223de163cad86 /platform/x11/SCsub | |
parent | 3e3f8a47616327d7faeb17f558bb81a943385e82 (diff) |
Initial work on Vulkan:
-Added VulkanContext
-Added an X11 implementation
-Added a rendering device abstraction
-added a Vulkan rendering device abstraction
-Engine does not work, only shows Godot logo (run it from bin/)
Diffstat (limited to 'platform/x11/SCsub')
-rw-r--r-- | platform/x11/SCsub | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/platform/x11/SCsub b/platform/x11/SCsub index 3d5aa15208..09e283b634 100644 --- a/platform/x11/SCsub +++ b/platform/x11/SCsub @@ -6,7 +6,8 @@ from platform_methods import run_in_subprocess import platform_x11_builders common_x11 = [ - "context_gl_x11.cpp", + #"context_gl_x11.cpp", + "vulkan_context_x11.cpp", "crash_handler_x11.cpp", "os_x11.cpp", "key_mapping_x11.cpp", |