Module: Mesa Branch: master Commit: ced61fd53e0293043f803689d796780032426152 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=ced61fd53e0293043f803689d796780032426152
Author: Jason Ekstrand <[email protected]> Date: Thu Mar 16 14:17:59 2017 -0700 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]> --- src/intel/vulkan/anv_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index f593759a66..74aad45e42 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 */ _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
