mirror of
https://github.com/gfx-rs/wgpu.git
synced 2026-04-22 03:02:01 -04:00
[rs] Use the "max" function to ensure that the swapchain size is not less than 1. For better readability.
This commit is contained in:
@@ -255,8 +255,8 @@ fn start<E: Example>(
|
||||
..
|
||||
} => {
|
||||
log::info!("Resizing to {:?}", size);
|
||||
sc_desc.width = if size.width == 0 { 1 } else { size.width };
|
||||
sc_desc.height = if size.height == 0 { 1 } else { size.height };
|
||||
sc_desc.width = size.width.max(1);
|
||||
sc_desc.height = size.height.max(1);
|
||||
example.resize(&sc_desc, &device, &queue);
|
||||
swap_chain = device.create_swap_chain(&surface, &sc_desc);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user