Skip to content

Commit

Permalink
Merge pull request #279 from mahkoh/jorth/vulkan-default
Browse files Browse the repository at this point in the history
render: make vulkan the default API
  • Loading branch information
mahkoh authored Oct 2, 2024
2 parents 074c9f5 + e5ca68a commit d2b6831
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion src/compositor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down

0 comments on commit d2b6831

Please sign in to comment.