diff options
author | Lionel Landwerlin <[email protected]> | 2018-03-06 17:09:21 +0000 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2018-04-23 18:30:10 +0100 |
commit | d71b442416be8ddbed93347d6a2f14a1294bec77 (patch) | |
tree | 1614bc55d5141722fd878a5ef5dcd9f3d51c2632 /src/mesa/drivers/dri/i965/brw_oa.py | |
parent | e37e6435895b27024e857f3b12269578613bd920 (diff) |
i965: perf: extract utility functions
We would like to reuse a number of the functions and structures in
another file in a future commit.
We also move the previous content of brw_performance_query.h into
brw_performance_query_metrics.h to be included by generated metrics
files.
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_oa.py')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_oa.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_oa.py b/src/mesa/drivers/dri/i965/brw_oa.py index 7bf7987b4ca..4c70f253d73 100644 --- a/src/mesa/drivers/dri/i965/brw_oa.py +++ b/src/mesa/drivers/dri/i965/brw_oa.py @@ -629,7 +629,7 @@ def main(): c(textwrap.dedent("""\ #include "brw_context.h" - #include "brw_performance_query.h" + #include "brw_performance_query_metrics.h" #define MIN(a, b) ((a < b) ? (a) : (b)) |