[rs] Use the "max" function to ensure that the swapchain size is not less than 1. For better readability.

This commit is contained in:
Tnze 2021-02-09 14:20:22 +08:00
parent f72ff5e1ee
commit e9d68a332d

View File

@ -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);
}