Home
last modified time | relevance | path

Searched refs:pnBatchOffset (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/third_party/PowerVR_SDK/Tools/
DPVRTBoneBatch.h26 int *pnBatchOffset; /*!< Offset into triangle array, per batch */ variable
69 FREE(pnBatchOffset); in Release()
DPVRTBoneBatch.cpp570 pnBatchOffset = (int*) calloc(lBatch.size(), sizeof(*pnBatchOffset)); in Create()
580 pnBatchOffset[nBatchCnt] = nTriCnt; in Create()
DPVRTModelPOD.cpp1055 …if(!WriteData32(pFile, ePODFileMeshBoneBatchOffsets, s.pMesh[i].sBoneBatches.pnBatchOffset,s.pMesh… in WritePOD()
1480 …case ePODFileMeshBoneBatchOffsets: if(!src.ReadAfterAlloc32(s.sBoneBatches.pnBatchOffset, nLen)) r… in ReadMesh()
3706 nFaces = mesh.sBoneBatches.pnBatchOffset[h+1] - mesh.sBoneBatches.pnBatchOffset[h];
3708 nFaces = mesh.nNumFaces - mesh.sBoneBatches.pnBatchOffset[h];
3710 pFaces = &old.pData[3 * mesh.sBoneBatches.pnBatchOffset[h] * old.nStride];
3943 if(in.sBoneBatches.pnBatchOffset)
3945 …out.sBoneBatches.pnBatchOffset = (int*) malloc(out.sBoneBatches.nBatchCnt * sizeof(out.sBoneBatche…
3947 if(out.sBoneBatches.pnBatchOffset)
3948 …py(out.sBoneBatches.pnBatchOffset, in.sBoneBatches.pnBatchOffset, out.sBoneBatches.nBatchCnt * siz…
4230 ui32Tris = inMesh.sBoneBatches.pnBatchOffset[j + 1] - inMesh.sBoneBatches.pnBatchOffset[j];
[all …]
/external/swiftshader/third_party/PowerVR_SDK/Examples/Advanced/ChameleonMan/OGLES2/
DOGLES2ChameleonMan.cpp831 … i32Tris = Mesh.sBoneBatches.pnBatchOffset[i32Batch+1] - Mesh.sBoneBatches.pnBatchOffset[i32Batch]; in DrawSkinnedMesh()
833 i32Tris = Mesh.nNumFaces - Mesh.sBoneBatches.pnBatchOffset[i32Batch]; in DrawSkinnedMesh()
836 size_t offset = sizeof(GLushort) * 3 * Mesh.sBoneBatches.pnBatchOffset[i32Batch]; in DrawSkinnedMesh()