1 /**********************************************************
2 * Copyright 2008-2009 VMware, Inc. All rights reserved.
4 * Permission is hereby granted, free of charge, to any person
5 * obtaining a copy of this software and associated documentation
6 * files (the "Software"), to deal in the Software without
7 * restriction, including without limitation the rights to use, copy,
8 * modify, merge, publish, distribute, sublicense, and/or sell copies
9 * of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice shall be
13 * included in all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
19 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
20 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24 **********************************************************/
28 #include "util/u_inlines.h"
29 #include "util/u_prim.h"
30 #include "util/u_time.h"
31 #include "indices/u_indices.h"
33 #include "svga_hw_reg.h"
34 #include "svga_context.h"
35 #include "svga_screen.h"
36 #include "svga_draw.h"
37 #include "svga_state.h"
38 #include "svga_swtnl.h"
39 #include "svga_debug.h"
43 static enum pipe_error
44 retry_draw_range_elements( struct svga_context
*svga
,
45 struct pipe_buffer
*index_buffer
,
54 enum pipe_error ret
= 0;
56 svga_hwtnl_set_unfilled( svga
->hwtnl
,
57 svga
->curr
.rast
->hw_unfilled
);
59 svga_hwtnl_set_flatshade( svga
->hwtnl
,
60 svga
->curr
.rast
->templ
.flatshade
,
61 svga
->curr
.rast
->templ
.flatshade_first
);
64 ret
= svga_update_state( svga
, SVGA_STATE_HW_DRAW
);
68 ret
= svga_hwtnl_draw_range_elements( svga
->hwtnl
,
69 index_buffer
, index_size
,
71 prim
, start
, count
, 0 );
75 if (svga
->curr
.any_user_vertex_buffers
) {
76 ret
= svga_hwtnl_flush( svga
->hwtnl
);
84 svga_context_flush( svga
, NULL
);
88 return retry_draw_range_elements( svga
,
89 index_buffer
, index_size
,
99 static enum pipe_error
100 retry_draw_arrays( struct svga_context
*svga
,
108 svga_hwtnl_set_unfilled( svga
->hwtnl
,
109 svga
->curr
.rast
->hw_unfilled
);
111 svga_hwtnl_set_flatshade( svga
->hwtnl
,
112 svga
->curr
.rast
->templ
.flatshade
,
113 svga
->curr
.rast
->templ
.flatshade_first
);
115 ret
= svga_update_state( svga
, SVGA_STATE_HW_DRAW
);
119 ret
= svga_hwtnl_draw_arrays( svga
->hwtnl
, prim
,
124 if (svga
->curr
.any_user_vertex_buffers
) {
125 ret
= svga_hwtnl_flush( svga
->hwtnl
);
133 if (ret
== PIPE_ERROR_OUT_OF_MEMORY
&& do_retry
)
135 svga_context_flush( svga
, NULL
);
137 return retry_draw_arrays( svga
,
152 svga_draw_range_elements( struct pipe_context
*pipe
,
153 struct pipe_buffer
*index_buffer
,
157 unsigned prim
, unsigned start
, unsigned count
)
159 struct svga_context
*svga
= svga_context( pipe
);
160 unsigned reduced_prim
= u_reduced_prim(prim
);
161 enum pipe_error ret
= 0;
163 if (!u_trim_pipe_prim( prim
, &count
))
167 * Mark currently bound target surfaces as dirty
168 * doesn't really matter if it is done before drawing.
170 * TODO If we ever normaly return something other then
171 * true we should not mark it as dirty then.
173 svga_mark_surfaces_dirty(svga_context(pipe
));
175 if (svga
->curr
.reduced_prim
!= reduced_prim
) {
176 svga
->curr
.reduced_prim
= reduced_prim
;
177 svga
->dirty
|= SVGA_NEW_REDUCED_PRIMITIVE
;
180 svga_update_state_retry( svga
, SVGA_STATE_NEED_SWTNL
);
183 if (svga
->curr
.vs
->base
.id
== svga
->debug
.disable_shader
||
184 svga
->curr
.fs
->base
.id
== svga
->debug
.disable_shader
)
188 if (svga
->state
.sw
.need_swtnl
)
190 ret
= svga_swtnl_draw_range_elements( svga
,
193 min_index
, max_index
,
199 ret
= retry_draw_range_elements( svga
,
210 ret
= retry_draw_arrays( svga
,
218 if (SVGA_DEBUG
& DEBUG_FLUSH
) {
219 svga_hwtnl_flush_retry( svga
);
220 svga_context_flush(svga
, NULL
);
226 svga_draw_elements( struct pipe_context
*pipe
,
227 struct pipe_buffer
*index_buffer
,
229 unsigned prim
, unsigned start
, unsigned count
)
231 svga_draw_range_elements( pipe
, index_buffer
,
234 prim
, start
, count
);
238 svga_draw_arrays( struct pipe_context
*pipe
,
239 unsigned prim
, unsigned start
, unsigned count
)
241 svga_draw_range_elements(pipe
, NULL
, 0,
242 start
, start
+ count
- 1,
248 void svga_init_draw_functions( struct svga_context
*svga
)
250 svga
->pipe
.draw_arrays
= svga_draw_arrays
;
251 svga
->pipe
.draw_elements
= svga_draw_elements
;
252 svga
->pipe
.draw_range_elements
= svga_draw_range_elements
;