Enable Vulkan

This commit is contained in:
Yash Karandikar 2022-03-09 11:41:12 -06:00
parent c75e2ded4c
commit 3f2ba9285d
Signed by: karx
GPG key ID: A794DA2529474BA5

View file

@ -148,6 +148,8 @@ impl Game {
let window = video_subsystem
.window(&self.title, self.width, self.height)
.position_centered()
// .opengl()
.vulkan()
.build()?;
let mut canvas = window.into_canvas().build()?;