mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 19:58:09 +02:00
meta: init var to silence uninitialized variable warning
This commit is contained in:
parent
d294365d06
commit
83b344021b
1 changed files with 1 additions and 1 deletions
|
|
@ -3177,7 +3177,7 @@ _mesa_meta_GetTexImage(struct gl_context *ctx,
|
|||
{
|
||||
if (_mesa_is_format_compressed(texImage->TexFormat)) {
|
||||
GLuint slice;
|
||||
bool result;
|
||||
bool result = true;
|
||||
|
||||
for (slice = 0; slice < texImage->Depth; slice++) {
|
||||
void *dst;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue