1 /**************************************************************************
3 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 **************************************************************************/
29 * Keith Whitwell <keith@tungstengraphics.com>
32 #include "draw/draw_context.h"
33 #include "os/os_time.h"
34 #include "pipe/p_defines.h"
35 #include "util/u_memory.h"
36 #include "sp_context.h"
40 struct softpipe_query
{
47 static struct softpipe_query
*softpipe_query( struct pipe_query
*p
)
49 return (struct softpipe_query
*)p
;
52 static struct pipe_query
*
53 softpipe_create_query(struct pipe_context
*pipe
,
56 struct softpipe_query
* sq
;
58 assert(type
== PIPE_QUERY_OCCLUSION_COUNTER
|| type
== PIPE_QUERY_TIME_ELAPSED
);
59 sq
= CALLOC_STRUCT( softpipe_query
);
62 return (struct pipe_query
*)sq
;
67 softpipe_destroy_query(struct pipe_context
*pipe
, struct pipe_query
*q
)
74 softpipe_begin_query(struct pipe_context
*pipe
, struct pipe_query
*q
)
76 struct softpipe_context
*softpipe
= softpipe_context( pipe
);
77 struct softpipe_query
*sq
= softpipe_query(q
);
80 case PIPE_QUERY_OCCLUSION_COUNTER
:
81 sq
->start
= softpipe
->occlusion_count
;
83 case PIPE_QUERY_TIME_ELAPSED
:
84 sq
->start
= 1000*os_time_get();
90 softpipe
->active_query_count
++;
91 softpipe
->dirty
|= SP_NEW_QUERY
;
96 softpipe_end_query(struct pipe_context
*pipe
, struct pipe_query
*q
)
98 struct softpipe_context
*softpipe
= softpipe_context( pipe
);
99 struct softpipe_query
*sq
= softpipe_query(q
);
101 softpipe
->active_query_count
--;
103 case PIPE_QUERY_OCCLUSION_COUNTER
:
104 sq
->end
= softpipe
->occlusion_count
;
106 case PIPE_QUERY_TIME_ELAPSED
:
107 sq
->end
= 1000*os_time_get();
113 softpipe
->dirty
|= SP_NEW_QUERY
;
118 softpipe_get_query_result(struct pipe_context
*pipe
,
119 struct pipe_query
*q
,
123 struct softpipe_query
*sq
= softpipe_query(q
);
124 *result
= sq
->end
- sq
->start
;
130 * Called by rendering function to check rendering is conditional.
131 * \return TRUE if we should render, FALSE if we should skip rendering
134 softpipe_check_render_cond(struct softpipe_context
*sp
)
136 struct pipe_context
*pipe
= &sp
->pipe
;
140 if (!sp
->render_cond_query
) {
141 return TRUE
; /* no query predicate, draw normally */
144 wait
= (sp
->render_cond_mode
== PIPE_RENDER_COND_WAIT
||
145 sp
->render_cond_mode
== PIPE_RENDER_COND_BY_REGION_WAIT
);
147 b
= pipe
->get_query_result(pipe
, sp
->render_cond_query
, wait
, &result
);
155 void softpipe_init_query_funcs(struct softpipe_context
*softpipe
)
157 softpipe
->pipe
.create_query
= softpipe_create_query
;
158 softpipe
->pipe
.destroy_query
= softpipe_destroy_query
;
159 softpipe
->pipe
.begin_query
= softpipe_begin_query
;
160 softpipe
->pipe
.end_query
= softpipe_end_query
;
161 softpipe
->pipe
.get_query_result
= softpipe_get_query_result
;