diff options
author | Brian Paul <[email protected]> | 2013-03-25 10:23:42 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-03-25 12:24:11 -0600 |
commit | c0f16df9389c101586bea9aa5ab75798272e183e (patch) | |
tree | 4260a0a88fa5044e15e27576db58118d2a5c192d /src | |
parent | 35aefe922660ed6e8fbad082757ae759acd711dd (diff) |
gallivm: init vars to silence warnings
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_state_fs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_state_fs.c b/src/gallium/drivers/llvmpipe/lp_state_fs.c index b87e1a44152..de51f39f159 100644 --- a/src/gallium/drivers/llvmpipe/lp_state_fs.c +++ b/src/gallium/drivers/llvmpipe/lp_state_fs.c @@ -1219,7 +1219,7 @@ convert_to_blend_type(struct gallivm_state *gallivm, for (i = 0; i < num_srcs; ++i) { LLVMValueRef chans[4]; - LLVMValueRef res; + LLVMValueRef res = NULL; unsigned sa = 0; dst[i] = LLVMBuildZExt(builder, src[i], lp_build_vec_type(gallivm, src_type), ""); @@ -1368,7 +1368,7 @@ convert_from_blend_type(struct gallivm_state *gallivm, for (i = 0; i < num_srcs; ++i) { LLVMValueRef chans[4]; - LLVMValueRef res; + LLVMValueRef res = NULL; unsigned sa = 0; dst[i] = LLVMBuildBitCast(builder, src[i], lp_build_vec_type(gallivm, src_type), ""); |