Add SurfaceFlags, and more formatting :)
This commit is contained in:
@@ -60,10 +60,9 @@ void guMtxL2F(float mf[4][4], Mtx *m)
|
||||
|
||||
void guMtxIdentF(float mf[4][4])
|
||||
{
|
||||
int r, c;
|
||||
for (r = 0; r < 4; r++)
|
||||
for (int r = 0; r < 4; r++)
|
||||
{
|
||||
for (c = 0; c < 4; c++)
|
||||
for (int c = 0; c < 4; c++)
|
||||
{
|
||||
if (r == c)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user