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.
master
ReinUsesLisp 2019-12-19 02:14:52 +07:00
parent 6ddffa010a
commit ec983a2451
No known key found for this signature in database
GPG Key ID: 2DFC508897B39CFE
1 changed files with 1 additions and 0 deletions

@ -87,6 +87,7 @@ void VKFence::Wait() {
}
void VKFence::Release() {
ASSERT(is_owned);
is_owned = false;
}