Home | History | Annotate | Download | only in runtime

Lines Matching defs:mesh

8 * Mesh
12 Mesh_t *mesh = (Mesh_t *)m.p;
13 if (mesh == NULL) {
16 return mesh->mHal.state.vertexBuffersCount;
21 Mesh_t *mesh = (Mesh_t *)m.p;
22 if (mesh == NULL) {
25 return mesh->mHal.state.primitivesCount;
30 Mesh_t *mesh = (Mesh_t *)m.p;
31 if (mesh == NULL || index >= mesh->mHal.state.vertexBuffersCount) {
35 rs_allocation returnAlloc = {mesh->mHal.state.vertexBuffers[index]};
41 Mesh_t *mesh = (Mesh_t *)m.p;
42 if (mesh == NULL || index >= mesh->mHal.state.primitivesCount) {
46 rs_allocation returnAlloc = {mesh->mHal.state.indexBuffers[index]};
52 Mesh_t *mesh = (Mesh_t *)m.p;
53 if (mesh == NULL || index >= mesh->mHal.state.primitivesCount) {
56 return mesh->mHal.state.primitives[index];