mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 02:38:04 +02:00
st/xorg: Don't complain about convolution filter being 'unknown'.
Also add a newline to the complaint so it'll be a little less annoying if we actually encounter an unknown filter value again.
This commit is contained in:
parent
10dbdee056
commit
012d0193cc
1 changed files with 2 additions and 1 deletions
|
|
@ -152,7 +152,8 @@ render_filter_to_gallium(int xrender_filter, int *out_filter)
|
|||
*out_filter = PIPE_TEX_FILTER_LINEAR;
|
||||
break;
|
||||
default:
|
||||
debug_printf("Unkown xrender filter");
|
||||
debug_printf("Unkown xrender filter\n");
|
||||
case PictFilterConvolution:
|
||||
*out_filter = PIPE_TEX_FILTER_NEAREST;
|
||||
return FALSE;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue