mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-15 20:20:05 +00:00
vk_reosurce_manager: Add assert for releasing fences
Notify the programmer when a request to release a fence is invalid because the fence is already free.
This commit is contained in:
parent
6ddffa010a
commit
ec983a2451
@ -87,6 +87,7 @@ void VKFence::Wait() {
|
||||
}
|
||||
|
||||
void VKFence::Release() {
|
||||
ASSERT(is_owned);
|
||||
is_owned = false;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user