i965: Disable ARB_pipeline_statistics_query on Gen4-5.
authorKenneth Graunke <kenneth@whitecape.org>
Tue, 9 May 2017 06:41:31 +0000 (23:41 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Wed, 10 May 2017 18:37:19 +0000 (11:37 -0700)
commit31abfd2d350efe59fe3ecd283807402c6695b15a
tree07345556a0f98f1ecdc986040b21979331116a8f
parent2f0450c627e5158d49aa1320eed9a5f6cb184838
i965: Disable ARB_pipeline_statistics_query on Gen4-5.

We apparently enabled this on all platforms in Mesa 10.6.  However, it
was only ever implemented for Gen6+.  The Gen4-5 query code goes up in
flames with an "Unrecognized query target" unreachable() error if you
even attempt to use any of the new functionality.

This wasn't caught because the Piglit tests require OpenGL 3.0, which
Gen4-5 cannot support.  The extension spec does say 3.0 is required,
though I'm not sure why - it seems like 2.1 would work fine.

We could implement it anyway, but it's a little bit of a pain due to the
lack of hardware contexts (so we have to snapshot around batches).

Given that it's been 100% broken for two years and I haven't seen a bug
report about it, I'm not terribly inclined to care.  So, let it go.

Reviewed-by: Samuel Iglesias Gonsálvez <siglesias@igalia.com>
src/mesa/drivers/dri/i965/intel_extensions.c