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 "util/u_inlines.h"
27 #include "pipe/p_defines.h"
28 #include "util/u_math.h"
30 #include "svga_context.h"
31 #include "svga_state.h"
37 SVGA3dRenderState rs
[SVGA3D_RS_MAX
];
41 #define EMIT_RS(svga, value, token, fail) \
43 if (svga->state.hw_draw.rs[SVGA3D_RS_##token] != value) { \
44 svga_queue_rs( &queue, SVGA3D_RS_##token, value ); \
45 svga->state.hw_draw.rs[SVGA3D_RS_##token] = value; \
49 #define EMIT_RS_FLOAT(svga, fvalue, token, fail) \
51 unsigned value = fui(fvalue); \
52 if (svga->state.hw_draw.rs[SVGA3D_RS_##token] != value) { \
53 svga_queue_rs( &queue, SVGA3D_RS_##token, value ); \
54 svga->state.hw_draw.rs[SVGA3D_RS_##token] = value; \
60 svga_queue_rs( struct rs_queue
*q
,
64 q
->rs
[q
->rs_count
].state
= rss
;
65 q
->rs
[q
->rs_count
].uintValue
= value
;
70 /* Compare old and new render states and emit differences between them
71 * to hardware. Simplest implementation would be to emit the whole of
74 static int emit_rss( struct svga_context
*svga
,
77 struct rs_queue queue
;
81 if (dirty
& SVGA_NEW_BLEND
) {
82 const struct svga_blend_state
*curr
= svga
->curr
.blend
;
84 EMIT_RS( svga
, curr
->rt
[0].writemask
, COLORWRITEENABLE
, fail
);
85 EMIT_RS( svga
, curr
->rt
[0].blend_enable
, BLENDENABLE
, fail
);
87 if (curr
->rt
[0].blend_enable
) {
88 EMIT_RS( svga
, curr
->rt
[0].srcblend
, SRCBLEND
, fail
);
89 EMIT_RS( svga
, curr
->rt
[0].dstblend
, DSTBLEND
, fail
);
90 EMIT_RS( svga
, curr
->rt
[0].blendeq
, BLENDEQUATION
, fail
);
92 EMIT_RS( svga
, curr
->rt
[0].separate_alpha_blend_enable
,
93 SEPARATEALPHABLENDENABLE
, fail
);
95 if (curr
->rt
[0].separate_alpha_blend_enable
) {
96 EMIT_RS( svga
, curr
->rt
[0].srcblend_alpha
, SRCBLENDALPHA
, fail
);
97 EMIT_RS( svga
, curr
->rt
[0].dstblend_alpha
, DSTBLENDALPHA
, fail
);
98 EMIT_RS( svga
, curr
->rt
[0].blendeq_alpha
, BLENDEQUATIONALPHA
, fail
);
103 if (dirty
& SVGA_NEW_BLEND_COLOR
) {
105 uint32 r
= float_to_ubyte(svga
->curr
.blend_color
.color
[0]);
106 uint32 g
= float_to_ubyte(svga
->curr
.blend_color
.color
[1]);
107 uint32 b
= float_to_ubyte(svga
->curr
.blend_color
.color
[2]);
108 uint32 a
= float_to_ubyte(svga
->curr
.blend_color
.color
[3]);
110 color
= (a
<< 24) | (r
<< 16) | (g
<< 8) | b
;
112 EMIT_RS( svga
, color
, BLENDCOLOR
, fail
);
115 if (dirty
& (SVGA_NEW_DEPTH_STENCIL
| SVGA_NEW_RAST
)) {
116 const struct svga_depth_stencil_state
*curr
= svga
->curr
.depth
;
117 const struct svga_rasterizer_state
*rast
= svga
->curr
.rast
;
119 if (!curr
->stencil
[0].enabled
)
123 EMIT_RS( svga
, FALSE
, STENCILENABLE
, fail
);
124 EMIT_RS( svga
, FALSE
, STENCILENABLE2SIDED
, fail
);
126 else if (curr
->stencil
[0].enabled
&& !curr
->stencil
[1].enabled
)
130 EMIT_RS( svga
, TRUE
, STENCILENABLE
, fail
);
131 EMIT_RS( svga
, FALSE
, STENCILENABLE2SIDED
, fail
);
133 EMIT_RS( svga
, curr
->stencil
[0].func
, STENCILFUNC
, fail
);
134 EMIT_RS( svga
, curr
->stencil
[0].fail
, STENCILFAIL
, fail
);
135 EMIT_RS( svga
, curr
->stencil
[0].zfail
, STENCILZFAIL
, fail
);
136 EMIT_RS( svga
, curr
->stencil
[0].pass
, STENCILPASS
, fail
);
138 EMIT_RS( svga
, curr
->stencil_mask
, STENCILMASK
, fail
);
139 EMIT_RS( svga
, curr
->stencil_writemask
, STENCILWRITEMASK
, fail
);
145 /* Hardware frontwinding is always CW, so if ours is also CW,
146 * then our definition of front face agrees with hardware.
147 * Otherwise need to flip.
149 if (rast
->templ
.front_ccw
) {
160 EMIT_RS( svga
, TRUE
, STENCILENABLE
, fail
);
161 EMIT_RS( svga
, TRUE
, STENCILENABLE2SIDED
, fail
);
163 EMIT_RS( svga
, curr
->stencil
[cw
].func
, STENCILFUNC
, fail
);
164 EMIT_RS( svga
, curr
->stencil
[cw
].fail
, STENCILFAIL
, fail
);
165 EMIT_RS( svga
, curr
->stencil
[cw
].zfail
, STENCILZFAIL
, fail
);
166 EMIT_RS( svga
, curr
->stencil
[cw
].pass
, STENCILPASS
, fail
);
168 EMIT_RS( svga
, curr
->stencil
[ccw
].func
, CCWSTENCILFUNC
, fail
);
169 EMIT_RS( svga
, curr
->stencil
[ccw
].fail
, CCWSTENCILFAIL
, fail
);
170 EMIT_RS( svga
, curr
->stencil
[ccw
].zfail
, CCWSTENCILZFAIL
, fail
);
171 EMIT_RS( svga
, curr
->stencil
[ccw
].pass
, CCWSTENCILPASS
, fail
);
173 EMIT_RS( svga
, curr
->stencil_mask
, STENCILMASK
, fail
);
174 EMIT_RS( svga
, curr
->stencil_writemask
, STENCILWRITEMASK
, fail
);
177 EMIT_RS( svga
, curr
->zenable
, ZENABLE
, fail
);
179 EMIT_RS( svga
, curr
->zfunc
, ZFUNC
, fail
);
180 EMIT_RS( svga
, curr
->zwriteenable
, ZWRITEENABLE
, fail
);
183 EMIT_RS( svga
, curr
->alphatestenable
, ALPHATESTENABLE
, fail
);
184 if (curr
->alphatestenable
) {
185 EMIT_RS( svga
, curr
->alphafunc
, ALPHAFUNC
, fail
);
186 EMIT_RS_FLOAT( svga
, curr
->alpharef
, ALPHAREF
, fail
);
190 if (dirty
& SVGA_NEW_STENCIL_REF
) {
191 EMIT_RS( svga
, svga
->curr
.stencil_ref
.ref_value
[0], STENCILREF
, fail
);
194 if (dirty
& (SVGA_NEW_RAST
| SVGA_NEW_NEED_PIPELINE
))
196 const struct svga_rasterizer_state
*curr
= svga
->curr
.rast
;
197 unsigned cullmode
= curr
->cullmode
;
199 /* Shademode: still need to rearrange index list to move
200 * flat-shading PV first vertex.
202 EMIT_RS( svga
, curr
->shademode
, SHADEMODE
, fail
);
204 /* Don't do culling while the software pipeline is active. It
205 * does it for us, and additionally introduces potentially
206 * back-facing triangles.
208 if (svga
->state
.sw
.need_pipeline
)
209 cullmode
= SVGA3D_FACE_NONE
;
211 EMIT_RS( svga
, cullmode
, CULLMODE
, fail
);
212 EMIT_RS( svga
, curr
->scissortestenable
, SCISSORTESTENABLE
, fail
);
213 EMIT_RS( svga
, curr
->multisampleantialias
, MULTISAMPLEANTIALIAS
, fail
);
214 EMIT_RS( svga
, curr
->lastpixel
, LASTPIXEL
, fail
);
215 EMIT_RS( svga
, curr
->linepattern
, LINEPATTERN
, fail
);
216 EMIT_RS_FLOAT( svga
, curr
->pointsize
, POINTSIZE
, fail
);
217 /* XXX still need to set this? */
218 EMIT_RS_FLOAT( svga
, 0.0, POINTSIZEMIN
, fail
);
219 EMIT_RS_FLOAT( svga
, SVGA_MAX_POINTSIZE
, POINTSIZEMAX
, fail
);
222 if (dirty
& (SVGA_NEW_RAST
| SVGA_NEW_FRAME_BUFFER
| SVGA_NEW_NEED_PIPELINE
))
224 const struct svga_rasterizer_state
*curr
= svga
->curr
.rast
;
228 /* Need to modify depth bias according to bound depthbuffer
229 * format. Don't do hardware depthbias while the software
230 * pipeline is active.
232 if (!svga
->state
.sw
.need_pipeline
&&
233 svga
->curr
.framebuffer
.zsbuf
)
235 slope
= curr
->slopescaledepthbias
;
236 bias
= svga
->curr
.depthscale
* curr
->depthbias
;
239 EMIT_RS_FLOAT( svga
, slope
, SLOPESCALEDEPTHBIAS
, fail
);
240 EMIT_RS_FLOAT( svga
, bias
, DEPTHBIAS
, fail
);
244 if (queue
.rs_count
) {
245 SVGA3dRenderState
*rs
;
247 if (SVGA3D_BeginSetRenderState( svga
->swc
,
249 queue
.rs_count
) != PIPE_OK
)
254 queue
.rs_count
* sizeof queue
.rs
[0]);
256 SVGA_FIFOCommitAll( svga
->swc
);
262 /* XXX: need to poison cached hardware state on failure to ensure
263 * dirty state gets re-emitted. Fix this by re-instating partial
264 * FIFOCommit command and only updating cached hw state once the
265 * initial allocation has succeeded.
267 memset(svga
->state
.hw_draw
.rs
, 0xcd, sizeof(svga
->state
.hw_draw
.rs
));
269 return PIPE_ERROR_OUT_OF_MEMORY
;
273 struct svga_tracked_state svga_hw_rss
=
278 SVGA_NEW_BLEND_COLOR
|
279 SVGA_NEW_DEPTH_STENCIL
|
280 SVGA_NEW_STENCIL_REF
|
282 SVGA_NEW_FRAME_BUFFER
|
283 SVGA_NEW_NEED_PIPELINE
),