Home | History | Annotate | Download | only in jni

Lines Matching defs:allocs

1286     RsAllocation *allocs = (RsAllocation*)malloc((uint32_t)numVtxIDs * sizeof(RsAllocation));
1287 rsaMeshGetVertices(con, (RsMesh)mesh, allocs, (uint32_t)numVtxIDs);
1290 _env->SetIntArrayRegion(_ids, i, 1, (const jint*)&allocs[i]);
1293 free(allocs);
1301 RsAllocation *allocs = (RsAllocation*)malloc((uint32_t)numIndices * sizeof(RsAllocation));
1304 rsaMeshGetIndices(con, (RsMesh)mesh, allocs, prims, (uint32_t)numIndices);
1307 _env->SetIntArrayRegion(_idxIds, i, 1, (const jint*)&allocs[i]);
1311 free(allocs);