mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-21 00:25:44 +00:00
Add arraysize to pointers of XModel struct to better signalize the size
This commit is contained in:
parent
786daabe36
commit
47a5b7abde
@ -512,8 +512,8 @@ struct XModel
|
|||||||
char lodRampType;
|
char lodRampType;
|
||||||
unsigned __int16 *boneNames;
|
unsigned __int16 *boneNames;
|
||||||
char *parentList;
|
char *parentList;
|
||||||
__int16 *quats;
|
__int16 (*quats)[4];
|
||||||
float *trans;
|
float (*trans)[4];
|
||||||
char *partClassification;
|
char *partClassification;
|
||||||
DObjAnimMat *baseMat;
|
DObjAnimMat *baseMat;
|
||||||
XSurface *surfs;
|
XSurface *surfs;
|
||||||
@ -2439,7 +2439,7 @@ struct __declspec(align(16)) XSurface
|
|||||||
unsigned __int16 vertCount;
|
unsigned __int16 vertCount;
|
||||||
unsigned __int16 triCount;
|
unsigned __int16 triCount;
|
||||||
unsigned __int16 baseVertIndex;
|
unsigned __int16 baseVertIndex;
|
||||||
unsigned __int16 *triIndices;
|
unsigned __int16 (*triIndices)[3];
|
||||||
XSurfaceVertexInfo vertInfo;
|
XSurfaceVertexInfo vertInfo;
|
||||||
GfxPackedVertex *verts0;
|
GfxPackedVertex *verts0;
|
||||||
ID3D11Buffer *vb0;
|
ID3D11Buffer *vb0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user