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 **********************************************************/
26 #include "pipe/p_inlines.h"
27 #include "util/u_upload_mgr.h"
28 #include "indices/u_indices.h"
31 #include "svga_draw.h"
32 #include "svga_draw_private.h"
33 #include "svga_screen_buffer.h"
34 #include "svga_winsys.h"
35 #include "svga_context.h"
37 #include "svga_hw_reg.h"
40 static enum pipe_error
41 translate_indices( struct svga_hwtnl
*hwtnl
,
42 struct pipe_buffer
*src
,
46 u_translate_func translate
,
47 struct pipe_buffer
**out_buf
)
49 struct pipe_screen
*screen
= hwtnl
->svga
->pipe
.screen
;
50 unsigned size
= index_size
* nr
;
51 const void *src_map
= NULL
;
52 struct pipe_buffer
*dst
= NULL
;
55 dst
= screen
->buffer_create( screen
, 32,
56 PIPE_BUFFER_USAGE_INDEX
|
57 PIPE_BUFFER_USAGE_CPU_WRITE
|
58 PIPE_BUFFER_USAGE_GPU_READ
,
63 src_map
= pipe_buffer_map( screen
, src
, PIPE_BUFFER_USAGE_CPU_READ
);
67 dst_map
= pipe_buffer_map( screen
, dst
, PIPE_BUFFER_USAGE_CPU_WRITE
);
71 translate( (const char *)src_map
+ offset
,
75 pipe_buffer_unmap( screen
, src
);
76 pipe_buffer_unmap( screen
, dst
);
83 screen
->buffer_unmap( screen
, src
);
86 screen
->buffer_unmap( screen
, dst
);
89 screen
->buffer_destroy( dst
);
91 return PIPE_ERROR_OUT_OF_MEMORY
;
99 svga_hwtnl_simple_draw_range_elements( struct svga_hwtnl
*hwtnl
,
100 struct pipe_buffer
*index_buffer
,
109 struct pipe_buffer
*upload_buffer
= NULL
;
110 SVGA3dPrimitiveRange range
;
113 unsigned index_offset
= start
* index_size
;
116 hw_prim
= svga_translate_prim(prim
, count
, &hw_count
);
121 svga_buffer_is_user_buffer(index_buffer
))
123 assert( index_buffer
->size
>= index_offset
+ count
* index_size
);
125 ret
= u_upload_buffer( hwtnl
->upload_ib
,
134 /* Don't need to worry about refcounting index_buffer as this is
135 * just a stack variable without a counted reference of its own.
136 * The caller holds the reference.
138 index_buffer
= upload_buffer
;
141 range
.primType
= hw_prim
;
142 range
.primitiveCount
= hw_count
;
143 range
.indexArray
.offset
= index_offset
;
144 range
.indexArray
.stride
= index_size
;
145 range
.indexWidth
= index_size
;
146 range
.indexBias
= bias
;
148 ret
= svga_hwtnl_prim( hwtnl
, &range
, min_index
, max_index
, index_buffer
);
154 pipe_buffer_reference( &upload_buffer
, NULL
);
163 svga_hwtnl_draw_range_elements( struct svga_hwtnl
*hwtnl
,
164 struct pipe_buffer
*index_buffer
,
168 unsigned prim
, unsigned start
, unsigned count
,
171 unsigned gen_prim
, gen_size
, gen_nr
, gen_type
;
172 u_translate_func gen_func
;
173 enum pipe_error ret
= PIPE_OK
;
175 if (hwtnl
->api_fillmode
!= PIPE_POLYGON_MODE_FILL
&&
176 prim
>= PIPE_PRIM_TRIANGLES
)
178 gen_type
= u_unfilled_translator( prim
,
189 gen_type
= u_index_translator( svga_hw_prims
,
202 if (gen_type
== U_TRANSLATE_MEMCPY
) {
203 /* No need for translation, just pass through to hardware:
205 return svga_hwtnl_simple_draw_range_elements( hwtnl
, index_buffer
,
209 gen_prim
, start
, count
, bias
);
212 struct pipe_buffer
*gen_buf
= NULL
;
214 /* Need to allocate a new index buffer and run the translate
215 * func to populate it. Could potentially cache this translated
216 * index buffer with the original to avoid future
217 * re-translations. Not much point if we're just accelerating
218 * GL though, as index buffers are typically used only once
221 ret
= translate_indices( hwtnl
,
231 ret
= svga_hwtnl_simple_draw_range_elements( hwtnl
,
245 pipe_buffer_reference( &gen_buf
, NULL
);