mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 13:48:56 +00:00
NativeVertexFormat: swap unsigned / signed formats to match GX order
This commit is contained in:
parent
72cc6431e5
commit
02d1d8e6a0
3 changed files with 9 additions and 9 deletions
|
@ -65,11 +65,11 @@ typedef void (LOADERDECL *TPipelineFunction)();
|
|||
|
||||
enum VarType
|
||||
{
|
||||
VAR_BYTE,
|
||||
VAR_UNSIGNED_BYTE,
|
||||
VAR_SHORT,
|
||||
VAR_UNSIGNED_SHORT,
|
||||
VAR_FLOAT,
|
||||
VAR_UNSIGNED_BYTE, // GX_U8 = 0
|
||||
VAR_BYTE, // GX_S8 = 1
|
||||
VAR_UNSIGNED_SHORT, // GX_U16 = 2
|
||||
VAR_SHORT, // GX_S16 = 3
|
||||
VAR_FLOAT, // GX_F32 = 4
|
||||
};
|
||||
|
||||
struct PortableVertexDeclaration
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue