mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-23 11:10:10 +01:00
radv: fix missing break in radv_GetPhysicalDeviceProperties2()
Fixes: 57e796a12a ("radv: Implement VK_EXT_custom_border_color")
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5097>
This commit is contained in:
parent
bcb0038c83
commit
0ceb56a531
1 changed files with 1 additions and 0 deletions
|
|
@ -1944,6 +1944,7 @@ void radv_GetPhysicalDeviceProperties2(
|
||||||
(VkPhysicalDeviceRobustness2PropertiesEXT *)ext;
|
(VkPhysicalDeviceRobustness2PropertiesEXT *)ext;
|
||||||
properties->robustStorageBufferAccessSizeAlignment = 4;
|
properties->robustStorageBufferAccessSizeAlignment = 4;
|
||||||
properties->robustUniformBufferAccessSizeAlignment = 4;
|
properties->robustUniformBufferAccessSizeAlignment = 4;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_CUSTOM_BORDER_COLOR_PROPERTIES_EXT: {
|
case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_CUSTOM_BORDER_COLOR_PROPERTIES_EXT: {
|
||||||
VkPhysicalDeviceCustomBorderColorPropertiesEXT *props =
|
VkPhysicalDeviceCustomBorderColorPropertiesEXT *props =
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue