mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-07 19:30:12 +01:00
st/mesa: fix PRIMITIVES_GENERATED query after the "pipeline stat single" changes
When this functionality was added, the PRIMITIVES_GENERATED query was
accidentally omitted. This causes issues for drivers that support
transform feedback."
Fixes: d644698b44 ("gallium: Add the ability to query a single
pipeline statistics counter")
Reviewed-by: Erik Faye-Lund <erik.faye-lund@collabora.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
c89e8470e5
commit
42aea4f1a7
1 changed files with 2 additions and 1 deletions
|
|
@ -91,7 +91,8 @@ st_DeleteQuery(struct gl_context *ctx, struct gl_query_object *q)
|
|||
static int
|
||||
target_to_index(const struct st_context *st, const struct gl_query_object *q)
|
||||
{
|
||||
if (q->Target == GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN ||
|
||||
if (q->Target == GL_PRIMITIVES_GENERATED ||
|
||||
q->Target == GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN ||
|
||||
q->Target == GL_TRANSFORM_FEEDBACK_STREAM_OVERFLOW_ARB)
|
||||
return q->Stream;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue