diff options
author | Samuel Pitoiset <[email protected]> | 2019-01-09 14:40:28 +0100 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2019-01-15 11:18:17 +0100 |
commit | a6e5ce51302e13ab10a0d706322abe746aaa4901 (patch) | |
tree | 10fb7d92cac0cfaca9f8afdc640b32e0f8d0354b /src | |
parent | 568e7a2998e39263c41ec70ec67bcc5601477781 (diff) |
radv: remove unnecessary returns in GetPhysicalDevice*Properties()
These functions return nothing.
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Alex Smith <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/amd/vulkan/radv_device.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index ba1d5f24a78..6d91cfc95df 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -1299,7 +1299,7 @@ void radv_GetPhysicalDeviceQueueFamilyProperties( { RADV_FROM_HANDLE(radv_physical_device, pdevice, physicalDevice); if (!pQueueFamilyProperties) { - return radv_get_physical_device_queue_family_properties(pdevice, pCount, NULL); + radv_get_physical_device_queue_family_properties(pdevice, pCount, NULL); return; } VkQueueFamilyProperties *properties[] = { @@ -1318,7 +1318,7 @@ void radv_GetPhysicalDeviceQueueFamilyProperties2( { RADV_FROM_HANDLE(radv_physical_device, pdevice, physicalDevice); if (!pQueueFamilyProperties) { - return radv_get_physical_device_queue_family_properties(pdevice, pCount, NULL); + radv_get_physical_device_queue_family_properties(pdevice, pCount, NULL); return; } VkQueueFamilyProperties *properties[] = { @@ -1343,8 +1343,8 @@ void radv_GetPhysicalDeviceMemoryProperties2( VkPhysicalDevice physicalDevice, VkPhysicalDeviceMemoryProperties2 *pMemoryProperties) { - return radv_GetPhysicalDeviceMemoryProperties(physicalDevice, - &pMemoryProperties->memoryProperties); + radv_GetPhysicalDeviceMemoryProperties(physicalDevice, + &pMemoryProperties->memoryProperties); } VkResult radv_GetMemoryHostPointerPropertiesEXT( |