mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
GPU: Explicitily assign enum values for GEComparison.
This commit is contained in:
parent
9bc3e8bf07
commit
e984374b29
1 changed files with 7 additions and 7 deletions
|
@ -330,13 +330,13 @@ enum GEMatrixType {
|
|||
enum GEComparison
|
||||
{
|
||||
GE_COMP_NEVER=0,
|
||||
GE_COMP_ALWAYS,
|
||||
GE_COMP_EQUAL,
|
||||
GE_COMP_NOTEQUAL,
|
||||
GE_COMP_LESS,
|
||||
GE_COMP_LEQUAL,
|
||||
GE_COMP_GREATER,
|
||||
GE_COMP_GEQUAL
|
||||
GE_COMP_ALWAYS=1,
|
||||
GE_COMP_EQUAL=2,
|
||||
GE_COMP_NOTEQUAL=3,
|
||||
GE_COMP_LESS=4,
|
||||
GE_COMP_LEQUAL=5,
|
||||
GE_COMP_GREATER=6,
|
||||
GE_COMP_GEQUAL=7
|
||||
};
|
||||
|
||||
enum GEShadeMode
|
||||
|
|
Loading…
Add table
Reference in a new issue