mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 04:38:03 +02:00
st/mesa: Silence chatty debug printf
Other debug_printf's in this file are in if (0) blocks. Trivial.
This commit is contained in:
parent
0899bf55d4
commit
c352cdf970
1 changed files with 4 additions and 2 deletions
|
|
@ -637,8 +637,10 @@ st_mesa_format_to_pipe_format(const struct st_context *st,
|
||||||
return PIPE_FORMAT_ATC_RGBA_INTERPOLATED;
|
return PIPE_FORMAT_ATC_RGBA_INTERPOLATED;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
debug_printf("%s(mesa_format=%s) -> NONE\n",
|
if (0) {
|
||||||
__func__, _mesa_get_format_name(mesaFormat));
|
debug_printf("%s(mesa_format=%s) -> NONE\n",
|
||||||
|
__func__, _mesa_get_format_name(mesaFormat));
|
||||||
|
}
|
||||||
return PIPE_FORMAT_NONE;
|
return PIPE_FORMAT_NONE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue