blob: 19d5e5031377e9885383ef1d850421f8f4d0220f [file] [log] [blame]
Jakob Bornecrantz31926332009-11-16 19:56:18 +01001/**********************************************************
2 * Copyright 2008-2009 VMware, Inc. All rights reserved.
3 *
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:
11 *
12 * The above copyright notice and this permission notice shall be
13 * included in all copies or substantial portions of the Software.
14 *
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
22 * SOFTWARE.
23 *
24 **********************************************************/
25
26#include "svga_cmd.h"
27
José Fonseca28486882010-02-02 14:42:17 +000028#include "util/u_inlines.h"
Brian Paul32a6e082015-12-04 12:26:35 -070029#include "util/u_prim.h"
Jakob Bornecrantz31926332009-11-16 19:56:18 +010030#include "indices/u_indices.h"
31
32#include "svga_hw_reg.h"
33#include "svga_draw.h"
34#include "svga_draw_private.h"
35#include "svga_context.h"
Brian Paul129d34d2015-10-16 16:12:19 -060036#include "svga_shader.h"
Jakob Bornecrantz31926332009-11-16 19:56:18 +010037
38
39#define DBG 0
40
41
Brian Paulea9fe9e2013-10-28 09:43:08 -060042static enum pipe_error
43generate_indices(struct svga_hwtnl *hwtnl,
44 unsigned nr,
45 unsigned index_size,
46 u_generate_func generate, struct pipe_resource **out_buf)
Jakob Bornecrantz31926332009-11-16 19:56:18 +010047{
Keith Whitwell287c94e2010-04-10 16:05:54 +010048 struct pipe_context *pipe = &hwtnl->svga->pipe;
49 struct pipe_transfer *transfer;
Jakob Bornecrantz31926332009-11-16 19:56:18 +010050 unsigned size = index_size * nr;
Keith Whitwell287c94e2010-04-10 16:05:54 +010051 struct pipe_resource *dst = NULL;
Jakob Bornecrantz31926332009-11-16 19:56:18 +010052 void *dst_map = NULL;
53
Brian Paule0542512015-08-13 11:00:58 -070054 dst = pipe_buffer_create(pipe->screen, PIPE_BIND_INDEX_BUFFER,
55 PIPE_USAGE_IMMUTABLE, size);
Edward O'Callaghan13eb5f52015-12-04 22:08:22 +110056 if (!dst)
Jakob Bornecrantz31926332009-11-16 19:56:18 +010057 goto fail;
58
Brian Paulea9fe9e2013-10-28 09:43:08 -060059 dst_map = pipe_buffer_map(pipe, dst, PIPE_TRANSFER_WRITE, &transfer);
Edward O'Callaghan13eb5f52015-12-04 22:08:22 +110060 if (!dst_map)
Jakob Bornecrantz31926332009-11-16 19:56:18 +010061 goto fail;
62
Rob Clark28f3f8d2013-10-25 15:22:06 -040063 generate(0, nr, dst_map);
Jakob Bornecrantz31926332009-11-16 19:56:18 +010064
Brian Paulea9fe9e2013-10-28 09:43:08 -060065 pipe_buffer_unmap(pipe, transfer);
Jakob Bornecrantz31926332009-11-16 19:56:18 +010066
67 *out_buf = dst;
68 return PIPE_OK;
69
70fail:
71 if (dst_map)
Brian Paulea9fe9e2013-10-28 09:43:08 -060072 pipe_buffer_unmap(pipe, transfer);
Jakob Bornecrantz31926332009-11-16 19:56:18 +010073
74 if (dst)
Brian Paulea9fe9e2013-10-28 09:43:08 -060075 pipe->screen->resource_destroy(pipe->screen, dst);
Brian Paul12845432012-10-16 17:54:37 -060076
Jakob Bornecrantz31926332009-11-16 19:56:18 +010077 return PIPE_ERROR_OUT_OF_MEMORY;
78}
79
Brian Paul12845432012-10-16 17:54:37 -060080
Brian Paulea9fe9e2013-10-28 09:43:08 -060081static boolean
82compare(unsigned cached_nr, unsigned nr, unsigned type)
Jakob Bornecrantz31926332009-11-16 19:56:18 +010083{
84 if (type == U_GENERATE_REUSABLE)
85 return cached_nr >= nr;
86 else
87 return cached_nr == nr;
88}
89
Brian Paul12845432012-10-16 17:54:37 -060090
Brian Paulea9fe9e2013-10-28 09:43:08 -060091static enum pipe_error
92retrieve_or_generate_indices(struct svga_hwtnl *hwtnl,
Brian Pauld21a3092016-05-25 16:52:34 -060093 enum pipe_prim_type prim,
Brian Paulea9fe9e2013-10-28 09:43:08 -060094 unsigned gen_type,
95 unsigned gen_nr,
96 unsigned gen_size,
97 u_generate_func generate,
98 struct pipe_resource **out_buf)
Jakob Bornecrantz31926332009-11-16 19:56:18 +010099{
100 enum pipe_error ret = PIPE_OK;
101 int i;
102
Charmaine Lee2e1cfcc2016-08-19 08:49:17 -0600103 SVGA_STATS_TIME_PUSH(svga_sws(hwtnl->svga), SVGA_STATS_TIME_GENERATEINDICES);
104
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100105 for (i = 0; i < IDX_CACHE_MAX; i++) {
106 if (hwtnl->index_cache[prim][i].buffer != NULL &&
Brian Paulea9fe9e2013-10-28 09:43:08 -0600107 hwtnl->index_cache[prim][i].generate == generate) {
108 if (compare(hwtnl->index_cache[prim][i].gen_nr, gen_nr, gen_type)) {
109 pipe_resource_reference(out_buf,
110 hwtnl->index_cache[prim][i].buffer);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100111
Brian Paul12845432012-10-16 17:54:37 -0600112 if (DBG)
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100113 debug_printf("%s retrieve %d/%d\n", __FUNCTION__, i, gen_nr);
114
Charmaine Lee2e1cfcc2016-08-19 08:49:17 -0600115 goto done;
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100116 }
Brian Paulea9fe9e2013-10-28 09:43:08 -0600117 else if (gen_type == U_GENERATE_REUSABLE) {
118 pipe_resource_reference(&hwtnl->index_cache[prim][i].buffer,
119 NULL);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100120
Brian Paul12845432012-10-16 17:54:37 -0600121 if (DBG)
122 debug_printf("%s discard %d/%d\n", __FUNCTION__,
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100123 i, hwtnl->index_cache[prim][i].gen_nr);
124
125 break;
126 }
127 }
128 }
129
Brian Paulea9fe9e2013-10-28 09:43:08 -0600130 if (i == IDX_CACHE_MAX) {
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100131 unsigned smallest = 0;
132 unsigned smallest_size = ~0;
Brian Paul12845432012-10-16 17:54:37 -0600133
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100134 for (i = 0; i < IDX_CACHE_MAX && smallest_size; i++) {
Brian Paulea9fe9e2013-10-28 09:43:08 -0600135 if (hwtnl->index_cache[prim][i].buffer == NULL) {
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100136 smallest = i;
137 smallest_size = 0;
138 }
Brian Paulea9fe9e2013-10-28 09:43:08 -0600139 else if (hwtnl->index_cache[prim][i].gen_nr < smallest) {
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100140 smallest = i;
141 smallest_size = hwtnl->index_cache[prim][i].gen_nr;
142 }
143 }
144
Brian Paulea9fe9e2013-10-28 09:43:08 -0600145 assert(smallest != IDX_CACHE_MAX);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100146
Brian Paulea9fe9e2013-10-28 09:43:08 -0600147 pipe_resource_reference(&hwtnl->index_cache[prim][smallest].buffer,
148 NULL);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100149
150 if (DBG)
Brian Paul12845432012-10-16 17:54:37 -0600151 debug_printf("%s discard smallest %d/%d\n", __FUNCTION__,
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100152 smallest, smallest_size);
Brian Paul12845432012-10-16 17:54:37 -0600153
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100154 i = smallest;
155 }
Brian Paul12845432012-10-16 17:54:37 -0600156
Brian Paulea9fe9e2013-10-28 09:43:08 -0600157 ret = generate_indices(hwtnl, gen_nr, gen_size, generate, out_buf);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100158 if (ret != PIPE_OK)
Charmaine Lee2e1cfcc2016-08-19 08:49:17 -0600159 goto done;
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100160
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100161 hwtnl->index_cache[prim][i].generate = generate;
162 hwtnl->index_cache[prim][i].gen_nr = gen_nr;
Brian Paulea9fe9e2013-10-28 09:43:08 -0600163 pipe_resource_reference(&hwtnl->index_cache[prim][i].buffer, *out_buf);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100164
165 if (DBG)
Brian Paul12845432012-10-16 17:54:37 -0600166 debug_printf("%s cache %d/%d\n", __FUNCTION__,
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100167 i, hwtnl->index_cache[prim][i].gen_nr);
168
Charmaine Lee2e1cfcc2016-08-19 08:49:17 -0600169done:
170 SVGA_STATS_TIME_POP(svga_sws(hwtnl->svga));
171 return ret;
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100172}
173
174
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100175static enum pipe_error
Brian Paulea9fe9e2013-10-28 09:43:08 -0600176simple_draw_arrays(struct svga_hwtnl *hwtnl,
Brian Pauld21a3092016-05-25 16:52:34 -0600177 enum pipe_prim_type prim, unsigned start, unsigned count,
Brian Paule0542512015-08-13 11:00:58 -0700178 unsigned start_instance, unsigned instance_count)
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100179{
180 SVGA3dPrimitiveRange range;
181 unsigned hw_prim;
182 unsigned hw_count;
183
184 hw_prim = svga_translate_prim(prim, count, &hw_count);
185 if (hw_count == 0)
186 return PIPE_ERROR_BAD_INPUT;
Brian Paul12845432012-10-16 17:54:37 -0600187
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100188 range.primType = hw_prim;
189 range.primitiveCount = hw_count;
190 range.indexArray.surfaceId = SVGA3D_INVALID_ID;
191 range.indexArray.offset = 0;
192 range.indexArray.stride = 0;
193 range.indexWidth = 0;
194 range.indexBias = start;
195
196 /* Min/max index should be calculated prior to applying bias, so we
197 * end up with min_index = 0, max_index = count - 1 and everybody
198 * looking at those numbers knows to adjust them by
199 * range.indexBias.
200 */
Brian Paule0542512015-08-13 11:00:58 -0700201 return svga_hwtnl_prim(hwtnl, &range, count,
202 0, count - 1, NULL,
203 start_instance, instance_count);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100204}
205
206
Brian Paul12845432012-10-16 17:54:37 -0600207enum pipe_error
Brian Paulea9fe9e2013-10-28 09:43:08 -0600208svga_hwtnl_draw_arrays(struct svga_hwtnl *hwtnl,
Brian Pauld21a3092016-05-25 16:52:34 -0600209 enum pipe_prim_type prim, unsigned start, unsigned count,
Brian Paule0542512015-08-13 11:00:58 -0700210 unsigned start_instance, unsigned instance_count)
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100211{
Brian Paula25ae482016-05-26 07:12:59 -0600212 enum pipe_prim_type gen_prim;
213 unsigned gen_size, gen_nr;
Brian Paul3f98c812015-10-31 07:44:49 -0600214 enum indices_mode gen_type;
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100215 u_generate_func gen_func;
216 enum pipe_error ret = PIPE_OK;
Brian Paul129d34d2015-10-16 16:12:19 -0600217 unsigned api_pv = hwtnl->api_pv;
218 struct svga_context *svga = hwtnl->svga;
219
Charmaine Lee2e1cfcc2016-08-19 08:49:17 -0600220 SVGA_STATS_TIME_PUSH(svga_sws(svga), SVGA_STATS_TIME_HWTNLDRAWARRAYS);
221
Brian Paul90afd7b2016-05-25 12:42:55 -0600222 if (svga->curr.rast->templ.fill_front !=
223 svga->curr.rast->templ.fill_back) {
224 assert(hwtnl->api_fillmode == PIPE_POLYGON_MODE_FILL);
225 }
226
Brian Paul129d34d2015-10-16 16:12:19 -0600227 if (svga->curr.rast->templ.flatshade &&
228 svga->state.hw_draw.fs->constant_color_output) {
229 /* The fragment color is a constant, not per-vertex so the whole
230 * primitive will be the same color (except for possible blending).
231 * We can ignore the current provoking vertex state and use whatever
232 * the hardware wants.
233 */
234 api_pv = hwtnl->hw_pv;
Brian Paul99effaa2015-10-16 16:14:46 -0600235
236 if (hwtnl->api_fillmode == PIPE_POLYGON_MODE_FILL) {
237 /* Do some simple primitive conversions to avoid index buffer
238 * generation below. Note that polygons and quads are not directly
239 * supported by the svga device. Also note, we can only do this
240 * for flat/constant-colored rendering because of provoking vertex.
241 */
242 if (prim == PIPE_PRIM_POLYGON) {
243 prim = PIPE_PRIM_TRIANGLE_FAN;
244 }
245 else if (prim == PIPE_PRIM_QUADS && count == 4) {
246 prim = PIPE_PRIM_TRIANGLE_FAN;
247 }
248 }
Brian Paul129d34d2015-10-16 16:12:19 -0600249 }
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100250
Brian Paul90afd7b2016-05-25 12:42:55 -0600251 if (svga_need_unfilled_fallback(hwtnl, prim)) {
Brian Paul1e16e482013-06-19 10:39:43 -0600252 /* Convert unfilled polygons into points, lines, triangles */
Brian Paulea9fe9e2013-10-28 09:43:08 -0600253 gen_type = u_unfilled_generator(prim,
254 start,
255 count,
256 hwtnl->api_fillmode,
257 &gen_prim,
258 &gen_size, &gen_nr, &gen_func);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100259 }
260 else {
Brian Paul1e16e482013-06-19 10:39:43 -0600261 /* Convert PIPE_PRIM_LINE_LOOP to PIPE_PRIM_LINESTRIP,
262 * convert PIPE_PRIM_POLYGON to PIPE_PRIM_TRIANGLE_FAN,
263 * etc, if needed (as determined by svga_hw_prims mask).
264 */
Brian Paulea9fe9e2013-10-28 09:43:08 -0600265 gen_type = u_index_generator(svga_hw_prims,
266 prim,
267 start,
268 count,
Brian Paul129d34d2015-10-16 16:12:19 -0600269 api_pv,
Brian Paulea9fe9e2013-10-28 09:43:08 -0600270 hwtnl->hw_pv,
271 &gen_prim, &gen_size, &gen_nr, &gen_func);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100272 }
273
274 if (gen_type == U_GENERATE_LINEAR) {
Charmaine Lee2e1cfcc2016-08-19 08:49:17 -0600275 ret = simple_draw_arrays(hwtnl, gen_prim, start, count,
Brian Paule0542512015-08-13 11:00:58 -0700276 start_instance, instance_count);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100277 }
278 else {
Keith Whitwell287c94e2010-04-10 16:05:54 +0100279 struct pipe_resource *gen_buf = NULL;
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100280
Brian Paul12845432012-10-16 17:54:37 -0600281 /* Need to draw as indexed primitive.
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100282 * Potentially need to run the gen func to build an index buffer.
283 */
Brian Paulea9fe9e2013-10-28 09:43:08 -0600284 ret = retrieve_or_generate_indices(hwtnl,
285 prim,
286 gen_type,
287 gen_nr,
288 gen_size, gen_func, &gen_buf);
Brian Paul4d2b21a2017-08-18 21:18:47 -0600289 if (ret == PIPE_OK) {
290 pipe_debug_message(&svga->debug.callback, PERF_INFO,
291 "generating temporary index buffer for drawing %s",
292 u_prim_name(prim));
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100293
Brian Paul4d2b21a2017-08-18 21:18:47 -0600294 ret = svga_hwtnl_simple_draw_range_elements(hwtnl,
295 gen_buf,
296 gen_size,
297 start,
298 0,
299 count - 1,
300 gen_prim, 0, gen_nr,
301 start_instance,
302 instance_count);
303 }
Brian Paul32a6e082015-12-04 12:26:35 -0700304
Brian Paul4d2b21a2017-08-18 21:18:47 -0600305 if (gen_buf) {
Brian Paulea9fe9e2013-10-28 09:43:08 -0600306 pipe_resource_reference(&gen_buf, NULL);
Brian Paul4d2b21a2017-08-18 21:18:47 -0600307 }
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100308 }
Charmaine Lee2e1cfcc2016-08-19 08:49:17 -0600309
310 SVGA_STATS_TIME_POP(svga_sws(svga));
311 return ret;
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100312}