compiler/glsl: Initialize local variable to zero to fix MSVC RTC error

Without this, we get a run-time error about using an uninitialized
variable.

Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6221>
This commit is contained in:
BillKristiansen 2020-06-11 10:38:19 -07:00 committed by Marge Bot
parent b38879f8c5
commit ff4c991fd1
1 changed files with 2 additions and 2 deletions

View File

@ -8007,7 +8007,7 @@ ast_interface_block::hir(exec_list *instructions,
return NULL;
}
unsigned qual_xfb_offset;
unsigned qual_xfb_offset = 0;
if (layout.flags.q.explicit_xfb_offset) {
if (!process_qualifier_constant(state, &loc, "xfb_offset",
layout.offset, &qual_xfb_offset)) {
@ -8015,7 +8015,7 @@ ast_interface_block::hir(exec_list *instructions,
}
}
unsigned qual_xfb_stride;
unsigned qual_xfb_stride = 0;
if (layout.flags.q.explicit_xfb_stride) {
if (!process_qualifier_constant(state, &loc, "xfb_stride",
layout.xfb_stride, &qual_xfb_stride)) {