Commit 02ce5830 by Alexis Hetu Committed by Alexis Hétu

Fixed lineWidth and pointSize limits

Changed limits for lineWidth and pointSize so that they're unsupported. This fixes all remaining failures in dEQP-VK.api.info.device b/117974925 Change-Id: I228dcb5305f2bfe5bb053aa968cebcbb7afaee98 Reviewed-on: https://swiftshader-review.googlesource.com/c/22511Tested-by: 's avatarAlexis Hétu <sugoi@google.com> Reviewed-by: 's avatarNicolas Capens <nicolascapens@google.com>
parent b3c4d88a
...@@ -234,9 +234,9 @@ const VkPhysicalDeviceLimits& PhysicalDevice::getLimits() const ...@@ -234,9 +234,9 @@ const VkPhysicalDeviceLimits& PhysicalDevice::getLimits() const
8, // maxCombinedClipAndCullDistances 8, // maxCombinedClipAndCullDistances
2, // discreteQueuePriorities 2, // discreteQueuePriorities
{ 1.0, 64.0 }, // pointSizeRange[2] { 1.0, 64.0 }, // pointSizeRange[2]
{ 0.0, 8.0 }, // lineWidthRange[2] { 1.0, 1.0 }, // lineWidthRange[2] (unsupported)
1.0, // pointSizeGranularity 0.0, // pointSizeGranularity (unsupported)
1.0, // lineWidthGranularity 0.0, // lineWidthGranularity (unsupported)
false, // strictLines false, // strictLines
true, // standardSampleLocations true, // standardSampleLocations
64, // optimalBufferCopyOffsetAlignment 64, // optimalBufferCopyOffsetAlignment
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment