mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-02 04:30:25 +01:00
gallium/util: print \n after DXTn printf
This commit is contained in:
parent
f50247c9aa
commit
2d65a7caf9
1 changed files with 3 additions and 3 deletions
|
|
@ -132,18 +132,18 @@ util_format_s3tc_do_init(void)
|
|||
|
||||
if (!library)
|
||||
debug_printf("couldn't open " DXTN_LIBNAME ", software DXTn "
|
||||
"compression/decompression unavailable");
|
||||
"compression/decompression unavailable\n");
|
||||
else {
|
||||
if (!is_nop(util_format_dxt1_rgb_fetch) &&
|
||||
!is_nop(util_format_dxt1_rgba_fetch) &&
|
||||
!is_nop(util_format_dxt3_rgba_fetch) &&
|
||||
!is_nop(util_format_dxt5_rgba_fetch) &&
|
||||
!is_nop(util_format_dxtn_pack)) {
|
||||
debug_printf("software DXTn compression/decompression available");
|
||||
debug_printf("software DXTn compression/decompression available\n");
|
||||
} else
|
||||
debug_printf("couldn't reference all symbols in "
|
||||
DXTN_LIBNAME ", software DXTn compression/decompression "
|
||||
"unavailable or partially available");
|
||||
"unavailable or partially available\n");
|
||||
}
|
||||
|
||||
#define DO(n, a, A) \
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue