diff options
author | Dave Airlie <[email protected]> | 2016-12-22 11:52:30 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2016-12-23 14:36:54 +1000 |
commit | e7279f16a0bf37a26e2556b188c760cd16fd60bb (patch) | |
tree | 2fc8f8e89657abedf2b4d2c3b9cfc74e218035fd /src/amd | |
parent | 14737bcdd5cc5ebd6694df82917959bc8badce91 (diff) |
radv: set some proper values for interp offset limits.
These are taken from the amdgpu-pro driver, and cause no
CTS change.
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/amd')
-rw-r--r-- | src/amd/vulkan/radv_device.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index 5f909409161..47be5f743f5 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -500,9 +500,9 @@ void radv_GetPhysicalDeviceProperties( .maxTexelOffset = 31, .minTexelGatherOffset = -32, .maxTexelGatherOffset = 31, - .minInterpolationOffset = 0, /* FIXME */ - .maxInterpolationOffset = 0, /* FIXME */ - .subPixelInterpolationOffsetBits = 0, /* FIXME */ + .minInterpolationOffset = -2, + .maxInterpolationOffset = 2, + .subPixelInterpolationOffsetBits = 8, .maxFramebufferWidth = (1 << 14), .maxFramebufferHeight = (1 << 14), .maxFramebufferLayers = (1 << 10), |