Skip to content

Commit

Permalink
Update recreation.md
Browse files Browse the repository at this point in the history
  • Loading branch information
chuigda authored and KyleMayes committed Sep 23, 2023
1 parent 72b9244 commit 406b6b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tutorial/book/src/swapchain/recreation.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ Now try to run the program and resize the window to see if the framebuffer is in

## Handling minimization

There is another case where a swapchain may become out of data and that is a special kind of window resizing: window minimization. This case is special because it will result in a framebuffer size of `0`. In this tutorial we will handle that by not rendering frames while the window is minimized:
There is another case where a swapchain may become out of date and that is a special kind of window resizing: window minimization. This case is special because it will result in a framebuffer size of `0`. In this tutorial we will handle that by not rendering frames while the window is minimized:

```rust,noplaypen
let mut app = unsafe { App::create(&window)? };
Expand Down

0 comments on commit 406b6b8

Please sign in to comment.