mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-05 13:20:10 +01:00
Cell: remove unused color field
This commit is contained in:
parent
6059ecaabe
commit
ea190f4b41
1 changed files with 0 additions and 10 deletions
|
|
@ -48,7 +48,6 @@ struct vertex_header {
|
|||
|
||||
struct prim_header {
|
||||
struct vertex_header *v[3];
|
||||
uint color;
|
||||
};
|
||||
|
||||
|
||||
|
|
@ -131,9 +130,6 @@ struct setup_stage {
|
|||
#if 0
|
||||
struct quad_header quad;
|
||||
#endif
|
||||
#if 1
|
||||
uint color;
|
||||
#endif
|
||||
|
||||
struct {
|
||||
int left[2]; /**< [0] = row0, [1] = row1 */
|
||||
|
|
@ -832,12 +828,6 @@ static void subtriangle( struct setup_stage *setup,
|
|||
static void
|
||||
setup_tri(struct setup_stage *setup, struct prim_header *prim)
|
||||
{
|
||||
setup->color = prim->color; /* XXX temporary */
|
||||
|
||||
/*
|
||||
_mesa_printf("%s\n", __FUNCTION__ );
|
||||
*/
|
||||
|
||||
if (!setup_sort_vertices( setup, prim )) {
|
||||
return; /* totally clipped */
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue