mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 11:30:21 +01:00
gallivm: init vars to silence gcc warnings
Silence warnings about using possibly uninitialized values. Signed-off-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
parent
16bd2c6d04
commit
c77c381fae
1 changed files with 2 additions and 2 deletions
|
|
@ -1412,8 +1412,8 @@ lp_build_unnormalized_coords(struct lp_build_sample_context *bld,
|
|||
{
|
||||
const unsigned dims = bld->dims;
|
||||
LLVMValueRef width;
|
||||
LLVMValueRef height;
|
||||
LLVMValueRef depth;
|
||||
LLVMValueRef height = NULL;
|
||||
LLVMValueRef depth = NULL;
|
||||
|
||||
lp_build_extract_image_sizes(bld,
|
||||
&bld->float_size_bld,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue