1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-02 09:03:37 +00:00

Remove defines for vertex attribute indices from gSP.h

This commit is contained in:
Sergey Lipskiy 2017-01-28 18:02:54 +07:00
parent df4a81bfea
commit bfe3e265bb

View File

@ -18,13 +18,10 @@
#define CLIP_X 0x03
#define CLIP_NEGX 0x01
#define CLIP_POSX 0x02
#define CLIP_Y 0x0C
#define CLIP_NEGY 0x04
#define CLIP_POSY 0x08
#define CLIP_W 0x10
#define CLIP_ALL 0x1F // CLIP_NEGX|CLIP_POSX|CLIP_NEGY|CLIP_POSY|CLIP_W
#define MODIFY_XY 0x000000FF
@ -33,16 +30,6 @@
#define MODIFY_RGBA 0xFF000000
#define MODIFY_ALL 0xFFFFFFFF
#define SC_POSITION 1
#define SC_COLOR 2
#define SC_TEXCOORD 3
#define SC_NUMLIGHTS 4
#define SC_MODIFY 5
#define SC_RECT_POSITION 6
#define SC_RECT_COLOR 7
#define SC_TEXCOORD0 8
#define SC_TEXCOORD1 9
struct SPVertex
{
f32 x, y, z, w;