Home
last modified time | relevance | path

Searched refs:pq_begin (Results 1 – 2 of 2) sorted by relevance

/third_party/mesa3d/src/mesa/state_tracker/
Dst_cb_queryobj.c74 if (stq->pq_begin) { in free_queries()
75 pipe->destroy_query(pipe, stq->pq_begin); in free_queries()
76 stq->pq_begin = NULL; in free_queries()
200 if (!stq->pq_begin) { in st_BeginQuery()
201 stq->pq_begin = pipe->create_query(pipe, type, 0); in st_BeginQuery()
204 if (stq->pq_begin) in st_BeginQuery()
205 ret = pipe->end_query(pipe, stq->pq_begin); in st_BeginQuery()
332 assert(stq->pq_begin); in get_query_result()
333 pipe->get_query_result(pipe, stq->pq_begin, TRUE, (void *)&Result0); in get_query_result()
336 assert(!stq->pq_begin); in get_query_result()
Dst_cb_queryobj.h43 struct pipe_query *pq_begin; member