mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 11:48:06 +02:00
radv: adjust the maximum number of coverage samples for VRS
It should actually be 4 because the maximum fragment size supported by the hardware is 2x2. 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/8100>
This commit is contained in:
parent
2c9bc0d20e
commit
c9e1264ec7
1 changed files with 1 additions and 1 deletions
|
|
@ -2147,7 +2147,7 @@ void radv_GetPhysicalDeviceProperties2(
|
|||
props->fragmentShadingRateNonTrivialCombinerOps = true;
|
||||
props->maxFragmentSize = (VkExtent2D) { 2, 2 };
|
||||
props->maxFragmentSizeAspectRatio = 1;
|
||||
props->maxFragmentShadingRateCoverageSamples = 1;
|
||||
props->maxFragmentShadingRateCoverageSamples = 2 * 2;
|
||||
props->maxFragmentShadingRateRasterizationSamples =
|
||||
VK_SAMPLE_COUNT_1_BIT |
|
||||
VK_SAMPLE_COUNT_2_BIT |
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue