mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-27 21:00:07 +01:00
Correct bilinear filter kernel size (should be 2x2)
This commit is contained in:
parent
ee6326a6b8
commit
3fdb963f6e
1 changed files with 1 additions and 1 deletions
|
|
@ -252,7 +252,7 @@ PictureSetDefaultFilters (ScreenPtr pScreen)
|
|||
return FALSE;
|
||||
if (PictureAddFilter (pScreen, FilterNearest, 0, 1, 1) < 0)
|
||||
return FALSE;
|
||||
if (PictureAddFilter (pScreen, FilterBilinear, 0, 4, 4) < 0)
|
||||
if (PictureAddFilter (pScreen, FilterBilinear, 0, 2, 2) < 0)
|
||||
return FALSE;
|
||||
|
||||
if (!PictureSetFilterAlias (pScreen, FilterNearest, FilterFast))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue