Module: Mesa
Branch: master
Commit: 9007c0ed26858cb1a40d17e1f5b477d6ed3d2db7
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=9007c0ed26858cb1a40d17e1f5b477d6ed3d2db7

Author: Brian Paul <[email protected]>
Date:   Mon Oct 29 11:15:09 2018 -0600

nir: fix yet another MSVC build break

Trivial.

---

 src/compiler/nir/nir_gather_xfb_info.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/compiler/nir/nir_gather_xfb_info.c 
b/src/compiler/nir/nir_gather_xfb_info.c
index a53703bb9b..e282bba008 100644
--- a/src/compiler/nir/nir_gather_xfb_info.c
+++ b/src/compiler/nir/nir_gather_xfb_info.c
@@ -138,7 +138,7 @@ nir_gather_xfb_info(const nir_shader *shader, void *mem_ctx)
          compare_xfb_output_offsets);
 
    /* Finally, do a sanity check */
-   unsigned max_offset[NIR_MAX_XFB_BUFFERS] = { };
+   unsigned max_offset[NIR_MAX_XFB_BUFFERS] = {0};
    for (unsigned i = 0; i < xfb->output_count; i++) {
       assert(xfb->outputs[i].offset >= max_offset[xfb->outputs[i].buffer]);
       assert(xfb->outputs[i].component_mask != 0);

_______________________________________________
mesa-commit mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to