summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2016-04-15 15:57:55 -0600
committerBrian Paul <brianp@vmware.com>2016-04-25 12:59:29 -0600
commit25e0d3659fcd3f842535750a7a4f6440bee850bb (patch)
treefcdd1b96407b9f63640ea654ef32e2738bbcf930
parent595fbc8dee00399db66f7b468b64d6f3b39601ba (diff)
svga: whitespace and formatting fixes in svga_pipe_depthstencil.c
-rw-r--r--src/gallium/drivers/svga/svga_pipe_depthstencil.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/gallium/drivers/svga/svga_pipe_depthstencil.c b/src/gallium/drivers/svga/svga_pipe_depthstencil.c
index 9ebb5d4b405..fb7b556f6c4 100644
--- a/src/gallium/drivers/svga/svga_pipe_depthstencil.c
+++ b/src/gallium/drivers/svga/svga_pipe_depthstencil.c
@@ -132,7 +132,7 @@ svga_create_depth_stencil_state(struct pipe_context *pipe,
const struct pipe_depth_stencil_alpha_state *templ)
{
struct svga_context *svga = svga_context(pipe);
- struct svga_depth_stencil_state *ds = CALLOC_STRUCT( svga_depth_stencil_state );
+ struct svga_depth_stencil_state *ds = CALLOC_STRUCT(svga_depth_stencil_state);
if (!ds)
return NULL;
@@ -147,7 +147,7 @@ svga_create_depth_stencil_state(struct pipe_context *pipe,
ds->stencil[0].fail = svga_translate_stencil_op(templ->stencil[0].fail_op);
ds->stencil[0].zfail = svga_translate_stencil_op(templ->stencil[0].zfail_op);
ds->stencil[0].pass = svga_translate_stencil_op(templ->stencil[0].zpass_op);
-
+
/* SVGA3D has one ref/mask/writemask triple shared between front &
* back face stencil. We really need two:
*/
@@ -161,7 +161,6 @@ svga_create_depth_stencil_state(struct pipe_context *pipe,
ds->stencil[0].pass = SVGA3D_STENCILOP_KEEP;
}
-
ds->stencil[1].enabled = templ->stencil[1].enabled;
if (templ->stencil[1].enabled) {
assert(templ->stencil[0].enabled);
@@ -210,8 +209,9 @@ svga_create_depth_stencil_state(struct pipe_context *pipe,
return ds;
}
-static void svga_bind_depth_stencil_state(struct pipe_context *pipe,
- void *depth_stencil)
+
+static void
+svga_bind_depth_stencil_state(struct pipe_context *pipe, void *depth_stencil)
{
struct svga_context *svga = svga_context(pipe);
@@ -224,8 +224,9 @@ static void svga_bind_depth_stencil_state(struct pipe_context *pipe,
svga->dirty |= SVGA_NEW_DEPTH_STENCIL_ALPHA;
}
-static void svga_delete_depth_stencil_state(struct pipe_context *pipe,
- void *depth_stencil)
+
+static void
+svga_delete_depth_stencil_state(struct pipe_context *pipe, void *depth_stencil)
{
struct svga_context *svga = svga_context(pipe);
struct svga_depth_stencil_state *ds =
@@ -257,8 +258,9 @@ static void svga_delete_depth_stencil_state(struct pipe_context *pipe,
}
-static void svga_set_stencil_ref( struct pipe_context *pipe,
- const struct pipe_stencil_ref *stencil_ref )
+static void
+svga_set_stencil_ref(struct pipe_context *pipe,
+ const struct pipe_stencil_ref *stencil_ref)
{
struct svga_context *svga = svga_context(pipe);
@@ -272,6 +274,7 @@ static void svga_set_stencil_ref( struct pipe_context *pipe,
svga->dirty |= SVGA_NEW_STENCIL_REF;
}
+
static void
svga_set_sample_mask(struct pipe_context *pipe,
unsigned sample_mask)
@@ -284,7 +287,8 @@ svga_set_sample_mask(struct pipe_context *pipe,
}
-void svga_init_depth_stencil_functions( struct svga_context *svga )
+void
+svga_init_depth_stencil_functions(struct svga_context *svga)
{
svga->pipe.create_depth_stencil_alpha_state = svga_create_depth_stencil_state;
svga->pipe.bind_depth_stencil_alpha_state = svga_bind_depth_stencil_state;
@@ -293,7 +297,3 @@ void svga_init_depth_stencil_functions( struct svga_context *svga )
svga->pipe.set_stencil_ref = svga_set_stencil_ref;
svga->pipe.set_sample_mask = svga_set_sample_mask;
}
-
-
-
-