2009-02-09 21:15:56 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2007-2009 Gabest
|
|
|
|
* http://www.gabest.org
|
|
|
|
*
|
|
|
|
* This Program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This Program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with GNU Make; see the file COPYING. If not, write to
|
|
|
|
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "GS.h"
|
|
|
|
#include "GSVector.h"
|
|
|
|
#include "GSVertexHW.h"
|
|
|
|
#include "GSVertexSW.h"
|
|
|
|
|
|
|
|
#pragma pack(push, 1)
|
|
|
|
|
|
|
|
__declspec(align(16)) struct GSVertex
|
|
|
|
{
|
|
|
|
union
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
GIFRegST ST;
|
|
|
|
GIFRegRGBAQ RGBAQ;
|
2009-06-23 04:12:32 +00:00
|
|
|
GIFRegXYZ XYZ;
|
2009-02-09 21:15:56 +00:00
|
|
|
GIFRegFOG FOG;
|
|
|
|
};
|
|
|
|
|
2009-06-05 15:15:02 +00:00
|
|
|
struct {GSVector4i vi[2];};
|
|
|
|
struct {GSVector4 vf[2];};
|
2009-02-09 21:15:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
GIFRegUV UV;
|
|
|
|
|
|
|
|
GSVertex() {memset(this, 0, sizeof(*this));}
|
|
|
|
|
2009-05-14 16:41:52 +00:00
|
|
|
GSVector4 GetUV() const {return GSVector4(GSVector4i::load(UV.u32[0]).upl16());}
|
2009-02-09 21:15:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct GSVertexP
|
|
|
|
{
|
|
|
|
GSVector4 p;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct GSVertexPT1
|
|
|
|
{
|
|
|
|
GSVector4 p;
|
|
|
|
GSVector2 t;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct GSVertexPT2
|
|
|
|
{
|
|
|
|
GSVector4 p;
|
|
|
|
GSVector2 t[2];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct GSVertexNull
|
|
|
|
{
|
|
|
|
GSVector4 p;
|
|
|
|
};
|
|
|
|
|
|
|
|
#pragma pack(pop)
|