Index buffer support to allow for reusing of the same vertices. Next commits will be refactors and documentation, graphs and flows of execution
This commit is contained in:
@@ -144,8 +144,8 @@ namespace RenderPresent {
|
||||
}
|
||||
void render::destroyFenceSemaphores() {
|
||||
for (size_t i = 0; i < Global::MAX_FRAMES_IN_FLIGHT; i++) {
|
||||
vkDestroySemaphore(Global::device, imageAvailableSemaphores[i], nullptr);
|
||||
vkDestroySemaphore(Global::device, renderFinishedSemaphores[i], nullptr);
|
||||
vkDestroySemaphore(Global::device, imageAvailableSemaphores[i], nullptr);
|
||||
vkDestroyFence(Global::device, inFlightFences[i], nullptr);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user