mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
VideoCommon: Use std::array in PortableVertexDeclaration
This commit is contained in:
@ -58,9 +58,9 @@ struct PortableVertexDeclaration
|
||||
int stride;
|
||||
|
||||
AttributeFormat position;
|
||||
AttributeFormat normals[3];
|
||||
AttributeFormat colors[2];
|
||||
AttributeFormat texcoords[8];
|
||||
std::array<AttributeFormat, 3> normals;
|
||||
std::array<AttributeFormat, 2> colors;
|
||||
std::array<AttributeFormat, 8> texcoords;
|
||||
AttributeFormat posmtx;
|
||||
|
||||
inline bool operator<(const PortableVertexDeclaration& b) const
|
||||
|
Reference in New Issue
Block a user