Module: Mesa Branch: master Commit: 9f39d3240b41639cbaa5b6c438a76c34d3f23444 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=9f39d3240b41639cbaa5b6c438a76c34d3f23444
Author: Vinson Lee <[email protected]> Date: Tue Apr 13 00:49:58 2010 -0700 draw llvm: Initialize variable. --- src/gallium/auxiliary/draw/draw_llvm.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/gallium/auxiliary/draw/draw_llvm.c b/src/gallium/auxiliary/draw/draw_llvm.c index 122e7ba..364a560 100644 --- a/src/gallium/auxiliary/draw/draw_llvm.c +++ b/src/gallium/auxiliary/draw/draw_llvm.c @@ -641,7 +641,7 @@ draw_llvm_generate(struct draw_llvm *llvm, struct draw_llvm_variant *variant) lp_build_loop_begin(builder, start, &lp_loop); { LLVMValueRef inputs[PIPE_MAX_SHADER_INPUTS][NUM_CHANNELS]; - LLVMValueRef aos_attribs[PIPE_MAX_SHADER_INPUTS][NUM_CHANNELS]; + LLVMValueRef aos_attribs[PIPE_MAX_SHADER_INPUTS][NUM_CHANNELS] = { { 0 } }; LLVMValueRef io; const LLVMValueRef (*ptr_aos)[NUM_CHANNELS]; _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
