Mesa (vulkan): anv/pipeline: Use the right mask for lower_indirect_derefs

Jason Ekstrand jekstrand at kemper.freedesktop.org
Thu Apr 14 22:13:43 UTC 2016


Module: Mesa
Branch: vulkan
Commit: e61c812f76eda0cf70317ee8c4070e80e3312e67
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=e61c812f76eda0cf70317ee8c4070e80e3312e67

Author: Jason Ekstrand <jason.ekstrand at intel.com>
Date:   Thu Apr 14 15:12:41 2016 -0700

anv/pipeline: Use the right mask for lower_indirect_derefs

---

 src/intel/vulkan/anv_pipeline.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/intel/vulkan/anv_pipeline.c b/src/intel/vulkan/anv_pipeline.c
index 90732db..a215a37 100644
--- a/src/intel/vulkan/anv_pipeline.c
+++ b/src/intel/vulkan/anv_pipeline.c
@@ -174,11 +174,11 @@ anv_shader_compile_to_nir(struct anv_device *device,
 
    nir_shader_gather_info(nir, entry_point->impl);
 
-   uint32_t indirect_mask = 0;
+   nir_variable_mode indirect_mask = 0;
    if (compiler->glsl_compiler_options[stage].EmitNoIndirectInput)
-      indirect_mask |= (1 << nir_var_shader_in);
+      indirect_mask |= nir_var_shader_in;
    if (compiler->glsl_compiler_options[stage].EmitNoIndirectTemp)
-      indirect_mask |= 1 << nir_var_local;
+      indirect_mask |= nir_var_local;
 
    nir_lower_indirect_derefs(nir, indirect_mask);
 




More information about the mesa-commit mailing list