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:
Gregory Hainaut 2016-03-12 12:20:40 +01:00
parent de7d127c52
commit 653998e005
1 changed files with 5 additions and 5 deletions

View File

@ -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];