Silence some -Wswitch-default warnings.

This commit is contained in:
Rohit Nirmal
2014-12-02 18:20:52 -06:00
parent 54f1e3a3c1
commit b030d29067
7 changed files with 20 additions and 17 deletions

View File

@ -959,6 +959,9 @@ union AlphaTest
if ((comp0 == ALWAYS && comp1 == ALWAYS) || (comp0 == NEVER && comp1 == NEVER))
return PASS;
break;
default:
return UNDETERMINED;
}
return UNDETERMINED;
}