Merge pull request #3337 from ReinUsesLisp/vulkan-staged

yuzu: Implement Vulkan frontend
This commit is contained in:
bunnei 2020-02-03 16:56:25 -05:00 committed by GitHub
commit c31ec00d67
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
36 changed files with 1172 additions and 197 deletions

View file

@ -268,7 +268,9 @@ struct System::Impl {
is_powered_on = false;
exit_lock = false;
gpu_core->WaitIdle();
if (gpu_core) {
gpu_core->WaitIdle();
}
// Shutdown emulation session
renderer.reset();