Skip to content

Commit

Permalink
fix missing window in full screen exclusive
Browse files Browse the repository at this point in the history
  • Loading branch information
tomadamatkinson committed Jul 4, 2023
1 parent 2bc587a commit e11d43f
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -906,6 +906,11 @@ void FullScreenExclusive::initialize_windows()

bool FullScreenExclusive::prepare(const vkb::ApplicationOptions &options)
{
if (!Application::prepare(options))
{
return false;
}

init_instance({VK_KHR_SURFACE_EXTENSION_NAME}, {});

vk_instance = std::make_unique<vkb::Instance>(context.instance);
Expand Down

0 comments on commit e11d43f

Please sign in to comment.