diff options
author | Samuel Pitoiset <[email protected]> | 2015-10-04 23:43:20 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2015-10-09 14:09:57 +0200 |
commit | 7129cbf5f4acaa86512c0dd6c127b8fb617fb441 (patch) | |
tree | 75e87db208f214c3dd2d121112d4e4a6a60bcafb /src/gallium/drivers/nouveau/nvc0/nvc0_screen.h | |
parent | 224fec05eac136d734e6ae06f6aab44d5ba640df (diff) |
nvc0: move HW SM queries to nvc0_query_hw_sm.c/h files
Global performance counters (PCOUNTER) will be added to
nvc0_query_hw_pm.c/h files.
Signed-off-by: Samuel Pitoiset <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nouveau/nvc0/nvc0_screen.h')
-rw-r--r-- | src/gallium/drivers/nouveau/nvc0/nvc0_screen.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.h b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.h index fa4f8645ffe..8cf7560e21f 100644 --- a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.h +++ b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.h @@ -94,7 +94,7 @@ struct nvc0_screen { struct { struct nvc0_program *prog; /* compute state object to read MP counters */ - struct pipe_query *mp_counter[8]; /* counter to query allocation */ + struct nvc0_hw_sm_query *mp_counter[8]; /* counter to query allocation */ uint8_t num_hw_sm_active[2]; bool mp_counters_enabled; } pm; |