diff options
author | Jason Ekstrand <[email protected]> | 2018-02-08 09:03:03 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2018-05-02 10:59:03 -0700 |
commit | bd35345e85ddaf9c8fe7b8ed089edd4926ee4fe1 (patch) | |
tree | efbb1d79c79407a47c99e1b6013dcf1f28765912 /src | |
parent | 28e410f6a58f5ff5a97b325f04ea84a959ce7130 (diff) |
anv: Advertise variableMultisampleRate
Initially, I didn't understand this feature. Turns out that all it
means is that you can switch multisample rates in the middle of a
zero-attachment subpass. We've been able to do this since forever.
Reviewed-by: Anuj Phogat <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/intel/vulkan/anv_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 856035b8b91..0563eae5c18 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -761,7 +761,7 @@ void anv_GetPhysicalDeviceFeatures( pdevice->info.has_64bit_types, .shaderInt16 = false, .shaderResourceMinLod = false, - .variableMultisampleRate = false, + .variableMultisampleRate = true, .inheritedQueries = true, }; |