summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/svga/svga_pipe_rasterizer.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2017-12-07 14:30:29 -0700
committerBrian Paul <brianp@vmware.com>2017-12-12 09:44:59 -0700
commit09b69828a3521283c332053d8d26fdc5022d4b7f (patch)
tree492b2bf027c092559abc129c630bbff4b2ed3012 /src/gallium/drivers/svga/svga_pipe_rasterizer.c
parent71ac73ce7605350a461f950aa303dd51c89a2168 (diff)
svga: trivial whitespace/formatting fixes in svga_pipe_rasterizer.c
Diffstat (limited to 'src/gallium/drivers/svga/svga_pipe_rasterizer.c')
-rw-r--r--src/gallium/drivers/svga/svga_pipe_rasterizer.c14
1 files changed, 5 insertions, 9 deletions
diff --git a/src/gallium/drivers/svga/svga_pipe_rasterizer.c b/src/gallium/drivers/svga/svga_pipe_rasterizer.c
index 35351fc6080..90eb3ef7738 100644
--- a/src/gallium/drivers/svga/svga_pipe_rasterizer.c
+++ b/src/gallium/drivers/svga/svga_pipe_rasterizer.c
@@ -233,7 +233,7 @@ svga_create_rasterizer_state(struct pipe_context *pipe,
rast->need_pipeline |= SVGA_PIPELINE_FLAG_LINES;
rast->need_pipeline_lines_str = "line stipple";
}
- }
+ }
if (!svga_have_vgpu10(svga) && templ->point_smooth) {
rast->need_pipeline |= SVGA_PIPELINE_FLAG_POINTS;
@@ -277,8 +277,7 @@ svga_create_rasterizer_state(struct pipe_context *pipe,
break;
case PIPE_FACE_NONE:
- if (fill_front != fill_back || offset_front != offset_back)
- {
+ if (fill_front != fill_back || offset_front != offset_back) {
/* Always need the draw module to work out different
* front/back fill modes:
*/
@@ -304,8 +303,7 @@ svga_create_rasterizer_state(struct pipe_context *pipe,
(templ->flatshade ||
templ->light_twoside ||
offset ||
- templ->cull_face != PIPE_FACE_NONE))
- {
+ templ->cull_face != PIPE_FACE_NONE)) {
fill = PIPE_POLYGON_MODE_FILL;
rast->need_pipeline |= SVGA_PIPELINE_FLAG_TRIS;
rast->need_pipeline_tris_str = "unfilled primitives with no index manipulation";
@@ -315,8 +313,7 @@ svga_create_rasterizer_state(struct pipe_context *pipe,
* then we also need the pipeline for tris.
*/
if (fill == PIPE_POLYGON_MODE_LINE &&
- (rast->need_pipeline & SVGA_PIPELINE_FLAG_LINES))
- {
+ (rast->need_pipeline & SVGA_PIPELINE_FLAG_LINES)) {
fill = PIPE_POLYGON_MODE_FILL;
rast->need_pipeline |= SVGA_PIPELINE_FLAG_TRIS;
rast->need_pipeline_tris_str = "decomposing lines";
@@ -325,8 +322,7 @@ svga_create_rasterizer_state(struct pipe_context *pipe,
/* Similarly for points:
*/
if (fill == PIPE_POLYGON_MODE_POINT &&
- (rast->need_pipeline & SVGA_PIPELINE_FLAG_POINTS))
- {
+ (rast->need_pipeline & SVGA_PIPELINE_FLAG_POINTS)) {
fill = PIPE_POLYGON_MODE_FILL;
rast->need_pipeline |= SVGA_PIPELINE_FLAG_TRIS;
rast->need_pipeline_tris_str = "decomposing points";