mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-30 16:30:10 +01: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;
|
||||
|
||||
default:
|
||||
debug_printf("%s(mesa_format=%s) -> NONE\n",
|
||||
__func__, _mesa_get_format_name(mesaFormat));
|
||||
if (0) {
|
||||
debug_printf("%s(mesa_format=%s) -> NONE\n",
|
||||
__func__, _mesa_get_format_name(mesaFormat));
|
||||
}
|
||||
return PIPE_FORMAT_NONE;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue