svga: whitespace/formatting fixes in svga_state_rss.c

Reviewed-by: Neha Bhende <bhenden@vmware.com>
Reviewed-by: Charmaine Lee <charmainel@vmware.com>
This commit is contained in:
Brian Paul 2017-12-29 09:54:26 -07:00
parent a1901d092c
commit 66c6cec612
1 changed files with 75 additions and 79 deletions

View File

@ -66,9 +66,7 @@ do { \
static inline void static inline void
svga_queue_rs( struct rs_queue *q, svga_queue_rs(struct rs_queue *q, unsigned rss, unsigned value)
unsigned rss,
unsigned value )
{ {
q->rs[q->rs_count].state = rss; q->rs[q->rs_count].state = rss;
q->rs[q->rs_count].uintValue = value; q->rs[q->rs_count].uintValue = value;
@ -127,15 +125,13 @@ emit_rss_vgpu9(struct svga_context *svga, unsigned dirty)
const struct svga_depth_stencil_state *curr = svga->curr.depth; const struct svga_depth_stencil_state *curr = svga->curr.depth;
const struct svga_rasterizer_state *rast = svga->curr.rast; const struct svga_rasterizer_state *rast = svga->curr.rast;
if (!curr->stencil[0].enabled) if (!curr->stencil[0].enabled) {
{
/* Stencil disabled /* Stencil disabled
*/ */
EMIT_RS(svga, FALSE, STENCILENABLE, fail); EMIT_RS(svga, FALSE, STENCILENABLE, fail);
EMIT_RS(svga, FALSE, STENCILENABLE2SIDED, fail); EMIT_RS(svga, FALSE, STENCILENABLE2SIDED, fail);
} }
else if (curr->stencil[0].enabled && !curr->stencil[1].enabled) else if (curr->stencil[0].enabled && !curr->stencil[1].enabled) {
{
/* Regular stencil /* Regular stencil
*/ */
EMIT_RS(svga, TRUE, STENCILENABLE, fail); EMIT_RS(svga, TRUE, STENCILENABLE, fail);
@ -149,8 +145,7 @@ emit_rss_vgpu9(struct svga_context *svga, unsigned dirty)
EMIT_RS(svga, curr->stencil_mask, STENCILMASK, fail); EMIT_RS(svga, curr->stencil_mask, STENCILMASK, fail);
EMIT_RS(svga, curr->stencil_writemask, STENCILWRITEMASK, fail); EMIT_RS(svga, curr->stencil_writemask, STENCILWRITEMASK, fail);
} }
else else {
{
int cw, ccw; int cw, ccw;
/* Hardware frontwinding is always CW, so if ours is also CW, /* Hardware frontwinding is always CW, so if ours is also CW,
@ -202,8 +197,7 @@ emit_rss_vgpu9(struct svga_context *svga, unsigned dirty)
EMIT_RS(svga, svga->curr.stencil_ref.ref_value[0], STENCILREF, fail); EMIT_RS(svga, svga->curr.stencil_ref.ref_value[0], STENCILREF, fail);
} }
if (dirty & (SVGA_NEW_RAST | SVGA_NEW_NEED_PIPELINE)) if (dirty & (SVGA_NEW_RAST | SVGA_NEW_NEED_PIPELINE)) {
{
const struct svga_rasterizer_state *curr = svga->curr.rast; const struct svga_rasterizer_state *curr = svga->curr.rast;
unsigned cullmode = curr->cullmode; unsigned cullmode = curr->cullmode;
@ -239,8 +233,9 @@ emit_rss_vgpu9(struct svga_context *svga, unsigned dirty)
EMIT_RS_FLOAT(svga, curr->linewidth, LINEWIDTH, fail); EMIT_RS_FLOAT(svga, curr->linewidth, LINEWIDTH, fail);
} }
if (dirty & (SVGA_NEW_RAST | SVGA_NEW_FRAME_BUFFER | SVGA_NEW_NEED_PIPELINE)) if (dirty & (SVGA_NEW_RAST |
{ SVGA_NEW_FRAME_BUFFER |
SVGA_NEW_NEED_PIPELINE)) {
const struct svga_rasterizer_state *curr = svga->curr.rast; const struct svga_rasterizer_state *curr = svga->curr.rast;
float slope = 0.0; float slope = 0.0;
float bias = 0.0; float bias = 0.0;
@ -304,6 +299,7 @@ fail:
return PIPE_ERROR_OUT_OF_MEMORY; return PIPE_ERROR_OUT_OF_MEMORY;
} }
/** Returns a non-culling rasterizer state object to be used with /** Returns a non-culling rasterizer state object to be used with
* point sprite. * point sprite.
*/ */