Revert "virgl: Enable PIPE_CAP_TGSI_TEXCOORD when the host supports it"

This reverts commit 2fbb4e85f7.

With this CAP enabled the host doesn't correctly handle the passing
the invariant flag between stages, and using surfaceless in the
client seems to trigger this error

Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15409>
This commit is contained in:
Gert Wollny 2022-03-16 14:29:10 +01:00
parent 60517948af
commit 3244100557

View file

@ -200,7 +200,7 @@ virgl_get_param(struct pipe_screen *screen, enum pipe_cap param)
case PIPE_CAP_QUERY_TIME_ELAPSED:
return 1;
case PIPE_CAP_TGSI_TEXCOORD:
return vscreen->caps.caps.v2.host_feature_check_version >= 8;
return 0;
case PIPE_CAP_MIN_MAP_BUFFER_ALIGNMENT:
return VIRGL_MAP_BUFFER_ALIGNMENT;
case PIPE_CAP_TEXTURE_BUFFER_OBJECTS: