diff options
author | Jason Ekstrand <[email protected]> | 2017-03-16 14:17:59 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-03-17 12:12:50 -0700 |
commit | ced61fd53e0293043f803689d796780032426152 (patch) | |
tree | 9444aabd99677dbfc080ac0f2f7270cb91d1a7ef /src/intel | |
parent | e675f57d4f1700afb193ffae70a84eece0c10738 (diff) |
anv: Turn on inherited queries
It all just works since it's just a hardware register so we might as
well turn it on.
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel')
-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 f593759a662..74aad45e420 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -496,7 +496,7 @@ void anv_GetPhysicalDeviceFeatures( .shaderInt16 = false, .shaderResourceMinLod = false, .variableMultisampleRate = false, - .inheritedQueries = false, + .inheritedQueries = true, }; /* We can't do image stores in vec4 shaders */ |