Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 03_Drawing_a_triangle/04_Swap_chain_recreation.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ If the swap chain turns out to be out of date when attempting to acquire an
image, then it is no longer possible to present to it. Therefore we should
immediately recreate the swap chain and try again in the next `drawFrame` call.

However, if we abort drawing at this point then the fence will be never have
However, if we abort drawing at this point then the fence will never have
been submitted with `vkQueueSubmit` and it'll be in an unexpected state when we
try to wait for it later on. We could recreate the fences as part of swap chain
recreation, but it's easier to move the `vkResetFences` call:
Expand Down