diff options
author | Kristian Høgsberg Kristensen <[email protected]> | 2016-02-29 10:55:39 -0800 |
---|---|---|
committer | Kristian Høgsberg Kristensen <[email protected]> | 2016-02-29 10:55:39 -0800 |
commit | 9d8bae613779e0cc7382c9252ccd7f5e7cd5cada (patch) | |
tree | bf6ce16a2c1f1b7dd34c4d56cc8bc18a2cdb610d /src/intel/vulkan/anv_device.c | |
parent | 635c0e92b777aefc9f82ffebfe982f57ac4503a8 (diff) |
anv: Don't advertise pipelineStatisticsQuery
We don't support that just yet.
Reported-by: Jacek Konieczny <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_device.c')
-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 857c4b1d1f4..c68280fe8d7 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -373,7 +373,7 @@ void anv_GetPhysicalDeviceFeatures( .textureCompressionASTC_LDR = true, .textureCompressionBC = true, .occlusionQueryPrecise = true, - .pipelineStatisticsQuery = true, + .pipelineStatisticsQuery = false, .vertexPipelineStoresAndAtomics = pdevice->info->gen >= 8, .fragmentStoresAndAtomics = true, .shaderTessellationAndGeometryPointSize = true, |