summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r600/r600_pipe.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2020-05-18 14:04:10 +1000
committerMarge Bot <eric+marge@anholt.net>2020-05-18 20:01:25 +0000
commitd50069ab08a917705b40641b46594e088734c2f5 (patch)
tree2c4b6f986f3fab3af9c108667c21e85f98bb73d5 /src/gallium/drivers/r600/r600_pipe.c
parent68b3b5bcab95f34073fcde7fe671cb25975218b0 (diff)
r600: enable TEXCOORD semantic for TGSI.
This should make intergrating with NIR easier Reviewed-by: Gert Wollny <gert.wollny@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5083>
Diffstat (limited to 'src/gallium/drivers/r600/r600_pipe.c')
-rw-r--r--src/gallium/drivers/r600/r600_pipe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.c b/src/gallium/drivers/r600/r600_pipe.c
index 94dc07d3059..27c411a3f26 100644
--- a/src/gallium/drivers/r600/r600_pipe.c
+++ b/src/gallium/drivers/r600/r600_pipe.c
@@ -339,7 +339,7 @@ static int r600_get_param(struct pipe_screen* pscreen, enum pipe_cap param)
return rscreen->b.chip_class > R700;
case PIPE_CAP_TGSI_TEXCOORD:
- return is_nir_enabled(&rscreen->b);
+ return 1;
case PIPE_CAP_FAKE_SW_MSAA:
return 0;