feat(gx): refresh CGxDevice studies

This commit is contained in:
phaneron 2025-04-29 16:26:36 -04:00
parent abcd88b4c1
commit 6a6d154b0a
63 changed files with 2685 additions and 549 deletions

View file

@ -0,0 +1,15 @@
#ifndef D3D9_VERTEXELEMENT_H
#define D3D9_VERTEXELEMENT_H
DECLARE_STRUCT(D3DVERTEXELEMENT9);
struct D3DVERTEXELEMENT9 {
uint16_t Stream;
uint16_t Offset;
uint8_t Type;
uint8_t Method;
uint8_t Usage;
uint8_t UsageIndex;
};
#endif