mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 17:52:29 +00:00
feat(profile): update 3.3.5a profile
This commit is contained in:
parent
9053d61b6b
commit
e1bab2b375
186 changed files with 1204 additions and 43942 deletions
29
profile/3.3.5a-windows-386/include/ui/simplebatchedmesh.h
Normal file
29
profile/3.3.5a-windows-386/include/ui/simplebatchedmesh.h
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
#ifndef UI_SIMPLE_BATCHED_MESH_H
|
||||
#define UI_SIMPLE_BATCHED_MESH_H
|
||||
|
||||
#include "texture/texture.h"
|
||||
#include "gx/texture.h"
|
||||
#include "gx/shader.h"
|
||||
#include "tempest/vector.h"
|
||||
|
||||
DECLARE_STRUCT(CSimpleBatchedMesh);
|
||||
|
||||
struct CSimpleBatchedMesh {
|
||||
CTexture* texture;
|
||||
CGxTex* textureID;
|
||||
EGxBlend alphaMode;
|
||||
CGxShader* shader;
|
||||
int32_t posCount;
|
||||
C3Vector* position;
|
||||
C2Vector* texCoord;
|
||||
CImVector* color;
|
||||
int32_t colorCount;
|
||||
uint16_t* indices;
|
||||
int32_t idxCount;
|
||||
int32_t onAtlas;
|
||||
float atlasScale;
|
||||
C2Vector atlasOffset;
|
||||
};
|
||||
STORM_TS_GROWABLE_ARRAY(CSimpleBatchedMesh);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue