1
0
Fork 0
forked from wry/wry

Merge pull request #279 from mahkoh/jorth/vulkan-default

render: make vulkan the default API
This commit is contained in:
mahkoh 2024-10-02 16:13:50 +02:00 committed by GitHub
commit d2b6831ce4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View file

@ -2,6 +2,7 @@
- Various bugfixes.
- Tiles and workspaces can now be dragged with the mouse.
- Vulkan is now the default renderer.
# 1.6.0 (2024-09-25)

View file

@ -234,7 +234,7 @@ fn start_compositor2(
render_ctx_watchers: Default::default(),
workspace_watchers: Default::default(),
default_workspace_capture: Cell::new(true),
default_gfx_api: Cell::new(GfxApi::OpenGl),
default_gfx_api: Cell::new(GfxApi::Vulkan),
activation_tokens: Default::default(),
toplevel_lists: Default::default(),
dma_buf_ids: Default::default(),