mirror of https://github.com/PCSX2/pcsx2.git
gsdx: add vertex data offset in comment
Avoid to recompute them every time I want to decode the vertex stream
This commit is contained in:
parent
de7d127c52
commit
653998e005
|
@ -34,11 +34,11 @@ __aligned(struct, 32) GSVertex
|
||||||
{
|
{
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
GIFRegST ST;
|
GIFRegST ST; // S:0, T:4
|
||||||
GIFRegRGBAQ RGBAQ;
|
GIFRegRGBAQ RGBAQ; // RGBA:8, Q:12
|
||||||
GIFRegXYZ XYZ;
|
GIFRegXYZ XYZ; // XY:16, Z:20
|
||||||
union {uint32 UV; struct {uint16 U, V;};};
|
union {uint32 UV; struct {uint16 U, V;};}; // UV:24
|
||||||
uint32 FOG;
|
uint32 FOG; // FOG:28
|
||||||
};
|
};
|
||||||
|
|
||||||
__m128i m[2];
|
__m128i m[2];
|
||||||
|
|
Loading…
Reference in New Issue