blob: 06a9be8b9d65a21b493227d9de8049da3d842686 [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 "draw/draw_context.h"
27#include "draw/draw_vbuf.h"
Brian Paule0542512015-08-13 11:00:58 -070028#include "util/u_bitmask.h"
José Fonseca28486882010-02-02 14:42:17 +000029#include "util/u_inlines.h"
Jakob Bornecrantz31926332009-11-16 19:56:18 +010030#include "pipe/p_state.h"
Jakob Bornecrantz31926332009-11-16 19:56:18 +010031
Brian Paule0542512015-08-13 11:00:58 -070032#include "svga_cmd.h"
Jakob Bornecrantz31926332009-11-16 19:56:18 +010033#include "svga_context.h"
Brian Paule0542512015-08-13 11:00:58 -070034#include "svga_shader.h"
Jakob Bornecrantz31926332009-11-16 19:56:18 +010035#include "svga_swtnl.h"
36#include "svga_state.h"
Brian Paul58ea42b2011-11-03 17:40:56 -060037#include "svga_tgsi.h"
Jakob Bornecrantz31926332009-11-16 19:56:18 +010038#include "svga_swtnl_private.h"
39
40
Brian Paulffbac582012-10-16 17:54:37 -060041#define SVGA_POINT_ADJ_X -0.375f
42#define SVGA_POINT_ADJ_Y -0.5f
Jakob Bornecrantz31926332009-11-16 19:56:18 +010043
Brian Paulffbac582012-10-16 17:54:37 -060044#define SVGA_LINE_ADJ_X -0.5f
45#define SVGA_LINE_ADJ_Y -0.5f
Jakob Bornecrantz31926332009-11-16 19:56:18 +010046
Brian Paulffbac582012-10-16 17:54:37 -060047#define SVGA_TRIANGLE_ADJ_X -0.375f
48#define SVGA_TRIANGLE_ADJ_Y -0.5f
Jakob Bornecrantz31926332009-11-16 19:56:18 +010049
50
Brian Paul183d4192017-07-12 10:24:11 -060051static void
52set_draw_viewport(struct svga_context *svga)
Jakob Bornecrantz31926332009-11-16 19:56:18 +010053{
54 struct pipe_viewport_state vp = svga->curr.viewport;
Brian Paulffbac582012-10-16 17:54:37 -060055 float adjx = 0.0f;
56 float adjy = 0.0f;
Jakob Bornecrantz31926332009-11-16 19:56:18 +010057
Brian Paule0542512015-08-13 11:00:58 -070058 if (svga_have_vgpu10(svga)) {
59 if (svga->curr.reduced_prim == PIPE_PRIM_TRIANGLES) {
60 adjy = 0.25;
Jakob Bornecrantz31926332009-11-16 19:56:18 +010061 }
Brian Paule0542512015-08-13 11:00:58 -070062 }
63 else {
64 switch (svga->curr.reduced_prim) {
65 case PIPE_PRIM_POINTS:
66 adjx = SVGA_POINT_ADJ_X;
67 adjy = SVGA_POINT_ADJ_Y;
68 break;
69 case PIPE_PRIM_LINES:
70 /* XXX: This is to compensate for the fact that wide lines are
71 * going to be drawn with triangles, but we're not catching all
72 * cases where that will happen.
73 */
74 if (svga->curr.rast->need_pipeline & SVGA_PIPELINE_FLAG_LINES)
75 {
76 adjx = SVGA_LINE_ADJ_X + 0.175f;
77 adjy = SVGA_LINE_ADJ_Y - 0.175f;
78 }
79 else {
80 adjx = SVGA_LINE_ADJ_X;
81 adjy = SVGA_LINE_ADJ_Y;
82 }
83 break;
84 case PIPE_PRIM_TRIANGLES:
85 adjx += SVGA_TRIANGLE_ADJ_X;
86 adjy += SVGA_TRIANGLE_ADJ_Y;
87 break;
Brian Paul69fb8f32017-03-01 14:52:46 -070088 default:
89 /* nothing */
90 break;
Jakob Bornecrantz31926332009-11-16 19:56:18 +010091 }
Jakob Bornecrantz31926332009-11-16 19:56:18 +010092 }
93
94 vp.translate[0] += adjx;
95 vp.translate[1] += adjy;
96
Zack Rusineaabb4e2013-05-24 16:08:39 -040097 draw_set_viewport_states(svga->swtnl.draw, 0, 1, &vp);
Jakob Bornecrantz31926332009-11-16 19:56:18 +010098}
99
José Fonsecae8f646f2011-11-02 10:32:20 +0000100static enum pipe_error
Brian Paul183d4192017-07-12 10:24:11 -0600101update_swtnl_draw(struct svga_context *svga, unsigned dirty)
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100102{
Charmaine Lee2e1cfcc2016-08-19 08:49:17 -0600103 SVGA_STATS_TIME_PUSH(svga_sws(svga), SVGA_STATS_TIME_SWTNLUPDATEDRAW);
104
Brian Paul183d4192017-07-12 10:24:11 -0600105 draw_flush(svga->swtnl.draw);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100106
Brian Paul183d4192017-07-12 10:24:11 -0600107 if (dirty & SVGA_NEW_VS)
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100108 draw_bind_vertex_shader(svga->swtnl.draw,
109 svga->curr.vs->draw_shader);
110
Brian Paul183d4192017-07-12 10:24:11 -0600111 if (dirty & SVGA_NEW_FS)
Brian Paul022e2702011-11-03 17:40:56 -0600112 draw_bind_fragment_shader(svga->swtnl.draw,
113 svga->curr.fs->draw_shader);
114
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100115 if (dirty & SVGA_NEW_VBUFFER)
Marek Olšáke73bf3b2012-03-29 17:51:50 +0200116 draw_set_vertex_buffers(svga->swtnl.draw, 0,
Brian Paul183d4192017-07-12 10:24:11 -0600117 svga->curr.num_vertex_buffers,
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100118 svga->curr.vb);
119
120 if (dirty & SVGA_NEW_VELEMENT)
Brian Paul183d4192017-07-12 10:24:11 -0600121 draw_set_vertex_elements(svga->swtnl.draw,
122 svga->curr.velems->count,
123 svga->curr.velems->velem);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100124
125 if (dirty & SVGA_NEW_CLIP)
Brian Paul183d4192017-07-12 10:24:11 -0600126 draw_set_clip_state(svga->swtnl.draw,
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100127 &svga->curr.clip);
128
129 if (dirty & (SVGA_NEW_VIEWPORT |
Brian Paul183d4192017-07-12 10:24:11 -0600130 SVGA_NEW_REDUCED_PRIMITIVE |
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100131 SVGA_NEW_RAST))
Brian Paul183d4192017-07-12 10:24:11 -0600132 set_draw_viewport(svga);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100133
134 if (dirty & SVGA_NEW_RAST)
135 draw_set_rasterizer_state(svga->swtnl.draw,
Brian Paule3a34cc2010-04-19 08:35:53 -0600136 &svga->curr.rast->templ,
137 (void *) svga->curr.rast);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100138
Matthew McCluref9e2c242013-10-29 13:36:41 -0700139 /* Tell the draw module how deep the Z/depth buffer is.
140 *
141 * If no depth buffer is bound, send the utility function the
142 * format for no bound depth (PIPE_FORMAT_NONE).
143 */
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100144 if (dirty & SVGA_NEW_FRAME_BUFFER)
Brian Paul183d4192017-07-12 10:24:11 -0600145 draw_set_zs_format(svga->swtnl.draw,
Matthew McCluref9e2c242013-10-29 13:36:41 -0700146 (svga->curr.framebuffer.zsbuf) ?
147 svga->curr.framebuffer.zsbuf->format : PIPE_FORMAT_NONE);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100148
Charmaine Lee2e1cfcc2016-08-19 08:49:17 -0600149 SVGA_STATS_TIME_POP(svga_sws(svga));
Brian Paul92cbfde2013-08-26 15:49:16 -0600150 return PIPE_OK;
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100151}
152
153
154struct svga_tracked_state svga_update_swtnl_draw =
155{
156 "update draw module state",
157 (SVGA_NEW_VS |
158 SVGA_NEW_VBUFFER |
159 SVGA_NEW_VELEMENT |
160 SVGA_NEW_CLIP |
161 SVGA_NEW_VIEWPORT |
162 SVGA_NEW_RAST |
163 SVGA_NEW_FRAME_BUFFER |
Roland Scheidegger429f0e32009-12-19 00:18:43 +0100164 SVGA_NEW_REDUCED_PRIMITIVE),
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100165 update_swtnl_draw
166};
167
168
Brian Paule0542512015-08-13 11:00:58 -0700169static SVGA3dSurfaceFormat
170translate_vertex_format(SVGA3dDeclType format)
171{
172 switch (format) {
173 case SVGA3D_DECLTYPE_FLOAT1:
174 return SVGA3D_R32_FLOAT;
175 case SVGA3D_DECLTYPE_FLOAT2:
176 return SVGA3D_R32G32_FLOAT;
177 case SVGA3D_DECLTYPE_FLOAT3:
178 return SVGA3D_R32G32B32_FLOAT;
179 case SVGA3D_DECLTYPE_FLOAT4:
180 return SVGA3D_R32G32B32A32_FLOAT;
181 default:
182 assert(!"Unexpected format in translate_vertex_format()");
183 return SVGA3D_R32G32B32A32_FLOAT;
184 }
185}
186
187
188static SVGA3dElementLayoutId
189svga_vdecl_to_input_element(struct svga_context *svga,
190 const SVGA3dVertexDecl *vdecl, unsigned num_decls)
191{
192 SVGA3dElementLayoutId id;
193 SVGA3dInputElementDesc elements[PIPE_MAX_ATTRIBS];
194 enum pipe_error ret;
195 unsigned i;
196
197 assert(num_decls <= PIPE_MAX_ATTRIBS);
198 assert(svga_have_vgpu10(svga));
199
200 for (i = 0; i < num_decls; i++) {
201 elements[i].inputSlot = 0; /* vertex buffer index */
202 elements[i].alignedByteOffset = vdecl[i].array.offset;
203 elements[i].format = translate_vertex_format(vdecl[i].identity.type);
204 elements[i].inputSlotClass = SVGA3D_INPUT_PER_VERTEX_DATA;
205 elements[i].instanceDataStepRate = 0;
206 elements[i].inputRegister = i;
207 }
208
209 id = util_bitmask_add(svga->input_element_object_id_bm);
210
211 ret = SVGA3D_vgpu10_DefineElementLayout(svga->swc, num_decls, id, elements);
212 if (ret != PIPE_OK) {
213 svga_context_flush(svga, NULL);
Brian Paul183d4192017-07-12 10:24:11 -0600214 ret = SVGA3D_vgpu10_DefineElementLayout(svga->swc, num_decls,
215 id, elements);
Brian Paule0542512015-08-13 11:00:58 -0700216 assert(ret == PIPE_OK);
217 }
218
219 return id;
220}
221
222
José Fonsecae8f646f2011-11-02 10:32:20 +0000223enum pipe_error
Brian Paul183d4192017-07-12 10:24:11 -0600224svga_swtnl_update_vdecl(struct svga_context *svga)
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100225{
226 struct svga_vbuf_render *svga_render = svga_vbuf_render(svga->swtnl.backend);
227 struct draw_context *draw = svga->swtnl.draw;
228 struct vertex_info *vinfo = &svga_render->vertex_info;
229 SVGA3dVertexDecl vdecl[PIPE_MAX_ATTRIBS];
Brian Paul1ca48b32011-11-04 14:36:59 -0600230 struct svga_fragment_shader *fs = svga->curr.fs;
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100231 int offset = 0;
232 int nr_decls = 0;
Brian Paul25cd2c22012-10-16 17:54:37 -0600233 int src;
234 unsigned i;
Brian Paule0542512015-08-13 11:00:58 -0700235 int any_change;
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100236
Charmaine Lee2e1cfcc2016-08-19 08:49:17 -0600237 SVGA_STATS_TIME_PUSH(svga_sws(svga), SVGA_STATS_TIME_SWTNLUPDATEVDECL);
238
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100239 memset(vinfo, 0, sizeof(*vinfo));
240 memset(vdecl, 0, sizeof(vdecl));
241
Zack Rusind6b3a192013-07-31 07:34:49 -0400242 draw_prepare_shader_outputs(draw);
Brian Paule0542512015-08-13 11:00:58 -0700243
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100244 /* always add position */
Zack Rusinb0575152009-12-19 13:54:53 -0500245 src = draw_find_shader_output(draw, TGSI_SEMANTIC_POSITION, 0);
Roland Scheidegger2dbc20e2015-12-19 03:43:14 +0100246 draw_emit_vertex_attr(vinfo, EMIT_4F, src);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100247 vinfo->attrib[0].emit = EMIT_4F;
248 vdecl[0].array.offset = offset;
Brian Paule0542512015-08-13 11:00:58 -0700249 vdecl[0].identity.method = SVGA3D_DECLMETHOD_DEFAULT;
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100250 vdecl[0].identity.type = SVGA3D_DECLTYPE_FLOAT4;
251 vdecl[0].identity.usage = SVGA3D_DECLUSAGE_POSITIONT;
252 vdecl[0].identity.usageIndex = 0;
253 offset += 16;
254 nr_decls++;
255
256 for (i = 0; i < fs->base.info.num_inputs; i++) {
Brian Paul1b5e88b2017-07-10 14:03:48 -0600257 const enum tgsi_semantic sem_name = fs->base.info.input_semantic_name[i];
Brian Paul58ea42b2011-11-03 17:40:56 -0600258 const unsigned sem_index = fs->base.info.input_semantic_index[i];
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100259
Brian Paul58ea42b2011-11-03 17:40:56 -0600260 src = draw_find_shader_output(draw, sem_name, sem_index);
261
262 vdecl[nr_decls].array.offset = offset;
263 vdecl[nr_decls].identity.usageIndex = sem_index;
264
265 switch (sem_name) {
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100266 case TGSI_SEMANTIC_COLOR:
Roland Scheidegger2dbc20e2015-12-19 03:43:14 +0100267 draw_emit_vertex_attr(vinfo, EMIT_4F, src);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100268 vdecl[nr_decls].identity.usage = SVGA3D_DECLUSAGE_COLOR;
269 vdecl[nr_decls].identity.type = SVGA3D_DECLTYPE_FLOAT4;
270 offset += 16;
271 nr_decls++;
272 break;
273 case TGSI_SEMANTIC_GENERIC:
Roland Scheidegger2dbc20e2015-12-19 03:43:14 +0100274 draw_emit_vertex_attr(vinfo, EMIT_4F, src);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100275 vdecl[nr_decls].identity.usage = SVGA3D_DECLUSAGE_TEXCOORD;
276 vdecl[nr_decls].identity.type = SVGA3D_DECLTYPE_FLOAT4;
Brian Paul58ea42b2011-11-03 17:40:56 -0600277 vdecl[nr_decls].identity.usageIndex =
278 svga_remap_generic_index(fs->generic_remap_table, sem_index);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100279 offset += 16;
280 nr_decls++;
281 break;
282 case TGSI_SEMANTIC_FOG:
Roland Scheidegger2dbc20e2015-12-19 03:43:14 +0100283 draw_emit_vertex_attr(vinfo, EMIT_1F, src);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100284 vdecl[nr_decls].identity.usage = SVGA3D_DECLUSAGE_TEXCOORD;
285 vdecl[nr_decls].identity.type = SVGA3D_DECLTYPE_FLOAT1;
286 assert(vdecl[nr_decls].identity.usageIndex == 0);
287 offset += 4;
288 nr_decls++;
289 break;
290 case TGSI_SEMANTIC_POSITION:
291 /* generated internally, not a vertex shader output */
292 break;
293 default:
294 assert(0);
295 }
296 }
297
298 draw_compute_vertex_size(vinfo);
299
300 svga_render->vdecl_count = nr_decls;
Brian Paule0542512015-08-13 11:00:58 -0700301 for (i = 0; i < svga_render->vdecl_count; i++) {
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100302 vdecl[i].array.stride = offset;
Brian Paule0542512015-08-13 11:00:58 -0700303 }
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100304
Brian Paule0542512015-08-13 11:00:58 -0700305 any_change = memcmp(svga_render->vdecl, vdecl, sizeof(vdecl));
306
307 if (svga_have_vgpu10(svga)) {
308 enum pipe_error ret;
309
310 if (!any_change && svga_render->layout_id != SVGA3D_INVALID_ID) {
Charmaine Lee2e1cfcc2016-08-19 08:49:17 -0600311 goto done;
Brian Paule0542512015-08-13 11:00:58 -0700312 }
313
314 if (svga_render->layout_id != SVGA3D_INVALID_ID) {
315 /* destroy old */
316 ret = SVGA3D_vgpu10_DestroyElementLayout(svga->swc,
317 svga_render->layout_id);
318 if (ret != PIPE_OK) {
319 svga_context_flush(svga, NULL);
320 ret = SVGA3D_vgpu10_DestroyElementLayout(svga->swc,
321 svga_render->layout_id);
322 assert(ret == PIPE_OK);
323 }
324
325 /**
326 * reset current layout id state after the element layout is
327 * destroyed, so that if a new layout has the same layout id, we
328 * will know to re-issue the SetInputLayout command.
329 */
330 if (svga->state.hw_draw.layout_id == svga_render->layout_id)
331 svga->state.hw_draw.layout_id = SVGA3D_INVALID_ID;
332
333 util_bitmask_clear(svga->input_element_object_id_bm,
334 svga_render->layout_id);
335 }
336
337 svga_render->layout_id =
338 svga_vdecl_to_input_element(svga, vdecl, nr_decls);
339
340 /* bind new */
341 if (svga->state.hw_draw.layout_id != svga_render->layout_id) {
342 ret = SVGA3D_vgpu10_SetInputLayout(svga->swc, svga_render->layout_id);
343 if (ret != PIPE_OK) {
344 svga_context_flush(svga, NULL);
345 ret = SVGA3D_vgpu10_SetInputLayout(svga->swc,
346 svga_render->layout_id);
347 assert(ret == PIPE_OK);
348 }
349
350 svga->state.hw_draw.layout_id = svga_render->layout_id;
351 }
352 }
353 else {
354 if (!any_change)
Charmaine Lee2e1cfcc2016-08-19 08:49:17 -0600355 goto done;
Brian Paule0542512015-08-13 11:00:58 -0700356 }
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100357
358 memcpy(svga_render->vdecl, vdecl, sizeof(vdecl));
359 svga->swtnl.new_vdecl = TRUE;
360
Charmaine Lee2e1cfcc2016-08-19 08:49:17 -0600361done:
362 SVGA_STATS_TIME_POP(svga_sws(svga));
363 return PIPE_OK;
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100364}
365
366
José Fonsecae8f646f2011-11-02 10:32:20 +0000367static enum pipe_error
Brian Paul183d4192017-07-12 10:24:11 -0600368update_swtnl_vdecl(struct svga_context *svga, unsigned dirty)
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100369{
Brian Paul183d4192017-07-12 10:24:11 -0600370 return svga_swtnl_update_vdecl(svga);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100371}
372
373
374struct svga_tracked_state svga_update_swtnl_vdecl =
375{
376 "update draw module vdecl",
377 (SVGA_NEW_VS |
378 SVGA_NEW_FS),
379 update_swtnl_vdecl
380};