struct LoadArray
{
uptr physicalAddr;
PicaDataVertexAttrType type[VERTEX_ATTRIBUTE_MAX];
u32 byte[VERTEX_ATTRIBUTE_MAX];
int bind[VERTEX_ATTRIBUTE_MAX];
};
Class for setting the vertex array.
| physicalAddr | Sets the texture array's physical address. Type is uptr. |
|
|---|---|---|
| type | The array for setting the vertex array type. The type is PicaDataVertexAttrType[]. |
|
| byte | The array setting attribute size. Type is u32[]. The size of the array is nn::gr::CTR::Vertex::VERTEX_ATTRIBUTE_MAX. |
|
| bind | Specifies the register being bound. Type is int[]. The size of the array is nn::gr::CTR::Vertex::VERTEX_ATTRIBUTE_MAX. |
| IsEnable | Returns whether the array is enabled. | |
|---|---|---|
| CheckDisable | Disables the array. |
CONFIDENTIAL