mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 09:38:07 +02:00
zink: use fprintf instead of printf to align the requirements warnings
This just seems to have been overlooked and nvk triggers it right now. Reviewed-by: Mike Blumenkrantz <michael.blumenkrantz@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24527>
This commit is contained in:
parent
4f5bfc6691
commit
77773490cf
1 changed files with 1 additions and 1 deletions
|
|
@ -2423,7 +2423,7 @@ check_base_requirements(struct zink_screen *screen)
|
|||
CHECK_OR_PRINT(feats.features.fillModeNonSolid);
|
||||
CHECK_OR_PRINT(feats.features.shaderClipDistance);
|
||||
if (!screen->info.feats12.scalarBlockLayout && !screen->info.have_EXT_scalar_block_layout)
|
||||
printf("scalarBlockLayout OR EXT_scalar_block_layout ");
|
||||
fprintf(stderr, "scalarBlockLayout OR EXT_scalar_block_layout ");
|
||||
CHECK_OR_PRINT(have_KHR_maintenance1);
|
||||
CHECK_OR_PRINT(have_EXT_custom_border_color);
|
||||
CHECK_OR_PRINT(have_EXT_line_rasterization);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue