mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-17 05:18:12 +02:00
virgl: disable anisotropic filtering.
virgl doesn't yet support anisotropic filtering so don't advertise it. Fixes:a8987b88ff("virgl: add driver for virtio-gpu 3D (v2)") Reviewed-by: Gert Wollny <gert.wollny@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11944> (cherry picked from commite831c4a537)
This commit is contained in:
parent
00930b90db
commit
cf02045c01
2 changed files with 2 additions and 2 deletions
|
|
@ -175,7 +175,7 @@
|
|||
"description": "virgl: disable anisotropic filtering.",
|
||||
"nominated": true,
|
||||
"nomination_type": 1,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"main_sha": null,
|
||||
"because_sha": "a8987b88ff1db4ac00720a9b56c4bc3aeb666537"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@ virgl_get_param(struct pipe_screen *screen, enum pipe_cap param)
|
|||
case PIPE_CAP_VERTEX_SHADER_SATURATE:
|
||||
return 1;
|
||||
case PIPE_CAP_ANISOTROPIC_FILTER:
|
||||
return 1;
|
||||
return 0;
|
||||
case PIPE_CAP_POINT_SPRITE:
|
||||
return 1;
|
||||
case PIPE_CAP_MAX_RENDER_TARGETS:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue