Home
last modified time | relevance | path

Searched refs:nNumVertex (Results 1 – 9 of 9) sorted by relevance

/external/swiftshader/third_party/PowerVR_SDK/Tools/
DPVRTFixedPoint.cpp42 new_mesh->nNumVertex = mesh->nNumVertex; in CreateFixedObjectMesh()
47 if(mesh->nNumVertex) in CreateFixedObjectMesh()
49 new_mesh->pVertex = new VERTTYPE[mesh->nNumVertex*3]; in CreateFixedObjectMesh()
50 for(unsigned int i = 0; i < mesh->nNumVertex*3; i++) // each vertex is 3 floats in CreateFixedObjectMesh()
56 new_mesh->nNumVertex = 0; in CreateFixedObjectMesh()
61 new_mesh->pUV = new VERTTYPE[mesh->nNumVertex*2]; in CreateFixedObjectMesh()
62 for(unsigned int i = 0; i < mesh->nNumVertex*2; i++) // UVs come in pairs of floats in CreateFixedObjectMesh()
70 new_mesh->pNormals = new VERTTYPE[mesh->nNumVertex*3]; in CreateFixedObjectMesh()
71 for(unsigned int i = 0; i < mesh->nNumVertex*3; i++) // each normal is 3 floats in CreateFixedObjectMesh()
92 unsigned int nPackedVertSize = mesh->nNumVertex * 3 + in CreateFixedObjectMesh()
[all …]
DPVRTModelPOD.cpp845 …if(!WriteMarker(pFile, ePODFileMeshInterleaved, false, mesh.nNumVertex * mesh.sVertex.nStride)) re… in WriteInterleaved()
847 for(i = 0; i < mesh.nNumVertex; ++i) in WriteInterleaved()
1045 if(!WriteData32(pFile, ePODFileMeshNumVtx, &s.pMesh[i].nNumVertex)) return false; in WritePOD()
1059 …if(!WriteCPODData(pFile, ePODFileMeshVtx, s.pMesh[i].sVertex, s.pMesh[i].nNumVertex, s.pMesh[i]… in WritePOD()
1060 …if(!WriteCPODData(pFile, ePODFileMeshNor, s.pMesh[i].sNormals, s.pMesh[i].nNumVertex, s.pMesh[i]… in WritePOD()
1061 …if(!WriteCPODData(pFile, ePODFileMeshTan, s.pMesh[i].sTangents, s.pMesh[i].nNumVertex, s.pMesh[i… in WritePOD()
1062 …if(!WriteCPODData(pFile, ePODFileMeshBin, s.pMesh[i].sBinormals, s.pMesh[i].nNumVertex, s.pMesh… in WritePOD()
1065 …if(!WriteCPODData(pFile, ePODFileMeshUVW, s.pMesh[i].psUVW[j], s.pMesh[i].nNumVertex, s.pMesh[i].… in WritePOD()
1067 …if(!WriteCPODData(pFile, ePODFileMeshVtxCol, s.pMesh[i].sVtxColours, s.pMesh[i].nNumVertex, s.pMe… in WritePOD()
1068 …if(!WriteCPODData(pFile, ePODFileMeshBoneIdx, s.pMesh[i].sBoneIdx, s.pMesh[i].nNumVertex, s.pMesh… in WritePOD()
[all …]
DPVRTFixedPoint.h122 unsigned int nNumVertex; member
156 unsigned int nNumVertex; member
DPVRTShadowVol.h102 const unsigned int nNumVertex,
DPVRTShadowVol.cpp292 const unsigned int nNumVertex, in PVRTShadowVolMeshCreateMesh() argument
306 psMesh->pV = (PVRTVECTOR3*)malloc(nNumVertex * sizeof(*psMesh->pV)); in PVRTShadowVolMeshCreateMesh()
320 _ASSERT(psMesh->nV <= nNumVertex); in PVRTShadowVolMeshCreateMesh()
324 _RPT2(_CRT_WARN, "Unique vertices : %d (from %d)\n", psMesh->nV, nNumVertex); in PVRTShadowVolMeshCreateMesh()
DPVRTModelPOD.h164 PVRTuint32 nNumVertex; /*!< Number of vertices in the mesh */ member
/external/swiftshader/third_party/PowerVR_SDK/Examples/Intermediate/DisplacementMap/OGLES2/
DOGLES2DisplacementMap.cpp272 unsigned int uiSize = Mesh.nNumVertex * Mesh.sVertex.nStride; in LoadVbos()
/external/swiftshader/third_party/PowerVR_SDK/Examples/Intermediate/ColourGrading/OGLES3/
DOGLES3ColourGrading.cpp349 unsigned int uiSize = Mesh.nNumVertex * Mesh.sVertex.nStride; in LoadVbos()
/external/swiftshader/third_party/PowerVR_SDK/Examples/Advanced/ChameleonMan/OGLES2/
DOGLES2ChameleonMan.cpp361 unsigned int uiSize = Mesh.nNumVertex * Mesh.sVertex.nStride; in LoadVbos()