Skip to content

Commit

Permalink
[Window] Now defaults to Vulkan.
Browse files Browse the repository at this point in the history
  • Loading branch information
Unarelith committed Oct 29, 2023
1 parent 8c0d548 commit bf40a05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/client/core/Window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ void Window::initBGFX() {
init.resolution.width = m_size.x;
init.resolution.height = m_size.y;
init.resolution.reset = BGFX_RESET_VSYNC;
init.type = bgfx::RendererType::OpenGL;
init.type = bgfx::RendererType::Vulkan;
init.callback = &m_callback;

extern bool BGFX_setupPlatformData(SDL_Window *window, bgfx::PlatformData &pd);
Expand Down

0 comments on commit bf40a05

Please sign in to comment.