diff options
author | Robert Bragg <[email protected]> | 2015-03-13 22:10:47 +0000 |
---|---|---|
committer | Robert Bragg <[email protected]> | 2017-02-22 19:16:21 +0000 |
commit | a96c9564e319cb387a9acf4981383cc77b018d0f (patch) | |
tree | 278599f5ab8d30bd31f57e598087cbeeefea8575 /src/mesa/drivers/dri/i965/Makefile.sources | |
parent | 0e7464f0a93908cc31d05fb33611f3cd73a7be65 (diff) |
i965: Implement INTEL_performance_query backend
This adds a bare-bones backend for the INTEL_performance_query extension
that exposes pipeline statistics.
Although this could be considered redundant given that the same
statistics are already available via query objects, they are a simple
starting point for this extension and it's expected to be convenient for
tools wanting to have a single go to api to introspect what performance
counters are available, along with names, descriptions and semantic/data
types.
This code is derived from Kenneth Graunke's work, temporarily removed
while the frontend and backend interface were reworked.
Signed-off-by: Robert Bragg <[email protected]>
Reviewed-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/Makefile.sources')
-rw-r--r-- | src/mesa/drivers/dri/i965/Makefile.sources | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/Makefile.sources b/src/mesa/drivers/dri/i965/Makefile.sources index dd546826d19..5278e86339a 100644 --- a/src/mesa/drivers/dri/i965/Makefile.sources +++ b/src/mesa/drivers/dri/i965/Makefile.sources @@ -135,6 +135,8 @@ i965_FILES = \ brw_nir_uniforms.cpp \ brw_object_purgeable.c \ brw_pipe_control.c \ + brw_performance_query.h \ + brw_performance_query.c \ brw_program.c \ brw_program.h \ brw_program_cache.c \ |