540eea7fd10df5f1c3ab6f79a3999343b211020e
[mesa.git] / src / gallium / drivers / llvmpipe / lp_query.c
1 /**************************************************************************
2 *
3 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * Copyright 2010 VMware, Inc.
5 * All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the
9 * "Software"), to deal in the Software without restriction, including
10 * without limitation the rights to use, copy, modify, merge, publish,
11 * distribute, sub license, and/or sell copies of the Software, and to
12 * permit persons to whom the Software is furnished to do so, subject to
13 * the following conditions:
14 *
15 * The above copyright notice and this permission notice (including the
16 * next paragraph) shall be included in all copies or substantial portions
17 * of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
22 * IN NO EVENT SHALL THE AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR
23 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
25 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 *
27 **************************************************************************/
28
29 /* Authors:
30 * Keith Whitwell, Qicheng Christopher Li, Brian Paul
31 */
32
33 #include "draw/draw_context.h"
34 #include "pipe/p_defines.h"
35 #include "util/u_memory.h"
36 #include "lp_context.h"
37 #include "lp_flush.h"
38 #include "lp_fence.h"
39 #include "lp_query.h"
40 #include "lp_rast.h"
41 #include "lp_state.h"
42
43
44 static struct llvmpipe_query *llvmpipe_query( struct pipe_query *p )
45 {
46 return (struct llvmpipe_query *)p;
47 }
48
49 static struct pipe_query *
50 llvmpipe_create_query(struct pipe_context *pipe,
51 unsigned type)
52 {
53 struct llvmpipe_query *pq;
54
55 assert(type == PIPE_QUERY_OCCLUSION_COUNTER);
56
57 pq = CALLOC_STRUCT( llvmpipe_query );
58 if (pq) {
59 pipe_mutex_init(pq->mutex);
60 }
61
62 return (struct pipe_query *) pq;
63 }
64
65
66 static void
67 llvmpipe_destroy_query(struct pipe_context *pipe, struct pipe_query *q)
68 {
69 struct llvmpipe_query *pq = llvmpipe_query(q);
70 /* query might still be in process if we never waited for the result */
71 if (!pq->done) {
72 llvmpipe_finish(pipe, __FUNCTION__);
73 }
74
75 pipe_mutex_destroy(pq->mutex);
76 FREE(pq);
77 }
78
79
80 static boolean
81 llvmpipe_get_query_result(struct pipe_context *pipe,
82 struct pipe_query *q,
83 boolean wait,
84 void *vresult)
85 {
86 struct llvmpipe_query *pq = llvmpipe_query(q);
87 uint64_t *result = (uint64_t *)vresult;
88
89 if (!pq->done) {
90 if (wait) {
91 llvmpipe_finish(pipe, __FUNCTION__);
92 }
93 /* this is a bit inconsequent but should be ok */
94 else {
95 llvmpipe_flush(pipe, 0, NULL, __FUNCTION__);
96 }
97 }
98
99 if (pq->done) {
100 *result = pq->result;
101 }
102
103 return pq->done;
104 }
105
106
107 static void
108 llvmpipe_begin_query(struct pipe_context *pipe, struct pipe_query *q)
109 {
110 struct llvmpipe_context *llvmpipe = llvmpipe_context( pipe );
111 struct llvmpipe_query *pq = llvmpipe_query(q);
112
113 /* Check if the query is already in the scene. If so, we need to
114 * flush the scene now. Real apps shouldn't re-use a query in a
115 * frame of rendering.
116 */
117 if (pq->binned) {
118 llvmpipe_finish(pipe, __FUNCTION__);
119 }
120
121 lp_setup_begin_query(llvmpipe->setup, pq);
122
123 llvmpipe->active_query_count++;
124 llvmpipe->dirty |= LP_NEW_QUERY;
125 }
126
127
128 static void
129 llvmpipe_end_query(struct pipe_context *pipe, struct pipe_query *q)
130 {
131 struct llvmpipe_context *llvmpipe = llvmpipe_context( pipe );
132 struct llvmpipe_query *pq = llvmpipe_query(q);
133
134 lp_setup_end_query(llvmpipe->setup, pq);
135
136 assert(llvmpipe->active_query_count);
137 llvmpipe->active_query_count--;
138 llvmpipe->dirty |= LP_NEW_QUERY;
139 }
140
141
142 void llvmpipe_init_query_funcs(struct llvmpipe_context *llvmpipe )
143 {
144 llvmpipe->pipe.create_query = llvmpipe_create_query;
145 llvmpipe->pipe.destroy_query = llvmpipe_destroy_query;
146 llvmpipe->pipe.begin_query = llvmpipe_begin_query;
147 llvmpipe->pipe.end_query = llvmpipe_end_query;
148 llvmpipe->pipe.get_query_result = llvmpipe_get_query_result;
149 }
150
151