summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/util/u_blitter.c
diff options
context:
space:
mode:
authorErik Faye-Lund <kusmabite@gmail.com>2022-03-08 17:25:46 +0100
committerMarge Bot <emma+marge@anholt.net>2022-03-17 16:44:41 +0000
commit89797fac5633c535b38f7e2c1f8e34dca5768225 (patch)
tree769dabeb8400ea82c2067802e77e8cb53fccdcc6 /src/gallium/auxiliary/util/u_blitter.c
parent8ac7dc9cf6d53b423a90943ad6a551a14fa29136 (diff)
gallium: rename layer-viewport caps
Similar to the previous commits, these aren't TGSI specific, so let's drop TGSI from their name. Reviewed-by: Adam Jackson <ajax@redhat.com> Acked-by: Ian Romanick <ian.d.romanick@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15316>
Diffstat (limited to 'src/gallium/auxiliary/util/u_blitter.c')
-rw-r--r--src/gallium/auxiliary/util/u_blitter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_blitter.c b/src/gallium/auxiliary/util/u_blitter.c
index 50d06c1febc..a6b32a34e3c 100644
--- a/src/gallium/auxiliary/util/u_blitter.c
+++ b/src/gallium/auxiliary/util/u_blitter.c
@@ -338,7 +338,7 @@ struct blitter_context *util_blitter_create(struct pipe_context *pipe)
ctx->has_layered =
pipe->screen->get_param(pipe->screen, PIPE_CAP_VS_INSTANCEID) &&
- pipe->screen->get_param(pipe->screen, PIPE_CAP_TGSI_VS_LAYER_VIEWPORT);
+ pipe->screen->get_param(pipe->screen, PIPE_CAP_VS_LAYER_VIEWPORT);
/* set invariant vertex coordinates */
for (i = 0; i < 4; i++) {