080e169ea110c232d09551770d549341c304f2c9
[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_query.h"
39 #include "lp_rast.h"
40 #include "lp_rast_priv.h"
41 #include "lp_state.h"
42 #include "lp_setup_context.h"
43
44
45 static struct llvmpipe_query *llvmpipe_query( struct pipe_query *p )
46 {
47 return (struct llvmpipe_query *)p;
48 }
49
50 static struct pipe_query *
51 llvmpipe_create_query(struct pipe_context *pipe,
52 unsigned type)
53 {
54 struct llvmpipe_query *pq;
55
56 assert(type == PIPE_QUERY_OCCLUSION_COUNTER);
57
58 pq = CALLOC_STRUCT( llvmpipe_query );
59 if (pq) {
60 pipe_mutex_init(pq->mutex);
61 }
62
63 return (struct pipe_query *) pq;
64 }
65
66
67 static void
68 llvmpipe_destroy_query(struct pipe_context *pipe, struct pipe_query *q)
69 {
70 struct llvmpipe_query *pq = llvmpipe_query(q);
71 pipe_mutex_destroy(pq->mutex);
72 FREE(pq);
73 }
74
75
76 static boolean
77 llvmpipe_get_query_result(struct pipe_context *pipe,
78 struct pipe_query *q,
79 boolean wait,
80 uint64_t *result )
81 {
82 struct llvmpipe_context *llvmpipe = llvmpipe_context( pipe );
83 struct llvmpipe_query *pq = llvmpipe_query(q);
84
85 if (!pq->done) {
86 lp_setup_flush(llvmpipe->setup, 0);
87 }
88
89 if (pq->done) {
90 *result = pq->result;
91 }
92
93 return pq->done;
94 }
95
96
97 static void
98 llvmpipe_begin_query(struct pipe_context *pipe, struct pipe_query *q)
99 {
100 struct llvmpipe_context *llvmpipe = llvmpipe_context( pipe );
101 struct llvmpipe_query *pq = llvmpipe_query(q);
102
103 /* Check if the query is already in the scene. If so, we need to
104 * flush the scene now. Real apps shouldn't re-use a query in a
105 * frame of rendering.
106 */
107 if (pq->binned) {
108 struct pipe_fence_handle *fence;
109 llvmpipe_flush(pipe, 0, &fence);
110 if (fence) {
111 pipe->screen->fence_finish(pipe->screen, fence, 0);
112 pipe->screen->fence_reference(pipe->screen, &fence, NULL);
113 }
114 }
115
116 lp_setup_begin_query(llvmpipe->setup, pq);
117
118 llvmpipe->active_query_count++;
119 llvmpipe->dirty |= LP_NEW_QUERY;
120 }
121
122
123 static void
124 llvmpipe_end_query(struct pipe_context *pipe, struct pipe_query *q)
125 {
126 struct llvmpipe_context *llvmpipe = llvmpipe_context( pipe );
127 struct llvmpipe_query *pq = llvmpipe_query(q);
128
129 lp_setup_end_query(llvmpipe->setup, pq);
130
131 assert(llvmpipe->active_query_count);
132 llvmpipe->active_query_count--;
133 llvmpipe->dirty |= LP_NEW_QUERY;
134 }
135
136
137 void llvmpipe_init_query_funcs(struct llvmpipe_context *llvmpipe )
138 {
139 llvmpipe->pipe.create_query = llvmpipe_create_query;
140 llvmpipe->pipe.destroy_query = llvmpipe_destroy_query;
141 llvmpipe->pipe.begin_query = llvmpipe_begin_query;
142 llvmpipe->pipe.end_query = llvmpipe_end_query;
143 llvmpipe->pipe.get_query_result = llvmpipe_get_query_result;
144 }
145
146