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:
Christian Gmeiner 2017-09-19 18:16:05 +02:00
parent a3d79946e5
commit 62a8ca22cd
2 changed files with 4 additions and 2 deletions

View file

@ -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);

View file

@ -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;