mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-21 22:20:14 +01:00
etnaviv: move sw query defines to etnaviv_query_sw.h
Also add new define ETNA_SW_QUERY_BASE. Signed-off-by: Christian Gmeiner <christian.gmeiner@gmail.com> Reviewed-by: Wladimir J. van der Laan <laanwj@gmail.com>
This commit is contained in:
parent
a3d79946e5
commit
62a8ca22cd
2 changed files with 4 additions and 2 deletions
|
|
@ -53,8 +53,7 @@ etna_query(struct pipe_query *pq)
|
|||
return (struct etna_query *)pq;
|
||||
}
|
||||
|
||||
#define ETNA_QUERY_DRAW_CALLS (PIPE_QUERY_DRIVER_SPECIFIC + 0)
|
||||
#define ETNA_QUERY_RS_OPERATIONS (PIPE_QUERY_DRIVER_SPECIFIC + 1)
|
||||
#define ETNA_SW_QUERY_BASE (PIPE_QUERY_DRIVER_SPECIFIC + 0)
|
||||
|
||||
void
|
||||
etna_query_screen_init(struct pipe_screen *pscreen);
|
||||
|
|
|
|||
|
|
@ -30,6 +30,9 @@
|
|||
|
||||
#include "etnaviv_query.h"
|
||||
|
||||
#define ETNA_QUERY_DRAW_CALLS (ETNA_SW_QUERY_BASE + 0)
|
||||
#define ETNA_QUERY_RS_OPERATIONS (ETNA_SW_QUERY_BASE + 1)
|
||||
|
||||
struct etna_sw_query {
|
||||
struct etna_query base;
|
||||
uint64_t begin_value, end_value;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue