mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
radv: do not return from radv_GetPhysicalDeviceFeatures2()
This function returns void. 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/5116>
This commit is contained in:
parent
c130a3402e
commit
198e5e2e9e
1 changed files with 1 additions and 1 deletions
|
|
@ -1319,7 +1319,7 @@ void radv_GetPhysicalDeviceFeatures2(
|
|||
break;
|
||||
}
|
||||
}
|
||||
return radv_GetPhysicalDeviceFeatures(physicalDevice, &pFeatures->features);
|
||||
radv_GetPhysicalDeviceFeatures(physicalDevice, &pFeatures->features);
|
||||
}
|
||||
|
||||
static size_t
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue