summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/softpipe/sp_setup.c
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2009-07-17 12:12:04 +0100
committerKeith Whitwell <keithw@vmware.com>2009-07-22 12:48:01 +0100
commit13e2d35764e0c8de3356ee663885568fc00424f0 (patch)
treec03a1aec64c39631c04f4148e69d1a195921be53 /src/gallium/drivers/softpipe/sp_setup.c
parent0ed99f45529178c77e47838f226231ea1bc9b918 (diff)
softpipe: remove unused vars in sp_setup.c
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_setup.c')
-rw-r--r--src/gallium/drivers/softpipe/sp_setup.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/gallium/drivers/softpipe/sp_setup.c b/src/gallium/drivers/softpipe/sp_setup.c
index 8ac22bd302..d05c9ad57c 100644
--- a/src/gallium/drivers/softpipe/sp_setup.c
+++ b/src/gallium/drivers/softpipe/sp_setup.c
@@ -178,8 +178,6 @@ struct setup_context {
int left[2]; /**< [0] = row0, [1] = row1 */
int right[2];
int y;
- unsigned y_flags;
- unsigned mask; /**< mask of MASK_BOTTOM/TOP_LEFT/RIGHT bits */
} span;
#if DEBUG_FRAGS
@@ -461,7 +459,6 @@ static void flush_spans( struct setup_context *setup )
setup->span.y = 0;
- setup->span.y_flags = 0;
setup->span.right[0] = 0;
setup->span.right[1] = 0;
setup->span.left[0] = 1000000; /* greater than right[0] */
@@ -863,7 +860,6 @@ static void subtriangle( struct setup_context *setup,
setup->span.left[_y&1] = left;
setup->span.right[_y&1] = right;
- setup->span.y_flags |= 1<<(_y&1);
}
}
@@ -939,7 +935,6 @@ void setup_tri( struct setup_context *setup,
setup->quad.input.prim = QUAD_PRIM_TRI;
setup->span.y = 0;
- setup->span.y_flags = 0;
setup->span.right[0] = 0;
setup->span.right[1] = 0;
/* setup->span.z_mode = tri_z_mode( setup->ctx ); */