trim spaces and use 4 space instead of 2
This commit is contained in:
parent
db59cc2a85
commit
0b62517c35
6 changed files with 894 additions and 893 deletions
|
@ -81,7 +81,8 @@ void transform_n_rasterize(surface_t * s, float * model_view_matrix, float * pro
|
||||||
if( s->t[i].state & PS_PARTIALLY_OUT &&
|
if( s->t[i].state & PS_PARTIALLY_OUT &&
|
||||||
( (s->t[i].v[0].state & PS_TOO_FAR) ||
|
( (s->t[i].v[0].state & PS_TOO_FAR) ||
|
||||||
(s->t[i].v[1].state & PS_TOO_FAR) ||
|
(s->t[i].v[1].state & PS_TOO_FAR) ||
|
||||||
(s->t[i].v[2].state & PS_TOO_FAR) ) )
|
(s->t[i].v[2].state & PS_TOO_FAR) )
|
||||||
|
)
|
||||||
continue;
|
continue;
|
||||||
fill_triangle(s, &(s->t[i]));
|
fill_triangle(s, &(s->t[i]));
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue