Fix some breakage after the PROGRAM_UNDEFINED change

This commit is contained in:
Alan Hourihane
2006-08-10 13:12:00 +00:00
parent 7196cddb3a
commit 8d97265711

View File

@@ -258,7 +258,7 @@ struct ureg {
};
static const struct ureg undef = {
~0,
PROGRAM_UNDEFINED,
~0,
0,
0,
@@ -334,7 +334,7 @@ static struct ureg negate( struct ureg reg )
static GLboolean is_undef( struct ureg reg )
{
return reg.file == 0xf;
return reg.file == PROGRAM_UNDEFINED;
}