Lines Matching refs:d3dxmesh
3454 ID3DXMesh *d3dxmesh = NULL; in D3DXLoadSkinMeshFromXof() local
3528 …XCreateMeshFVF(mesh_data.num_tri_faces, total_vertices, options, mesh_data.fvf, device, &d3dxmesh); in D3DXLoadSkinMeshFromXof()
3531 hr = d3dxmesh->lpVtbl->LockVertexBuffer(d3dxmesh, 0, &vertices); in D3DXLoadSkinMeshFromXof()
3571 d3dxmesh->lpVtbl->UnlockVertexBuffer(d3dxmesh); in D3DXLoadSkinMeshFromXof()
3573 hr = d3dxmesh->lpVtbl->LockIndexBuffer(d3dxmesh, 0, &indices); in D3DXLoadSkinMeshFromXof()
3598 d3dxmesh->lpVtbl->UnlockIndexBuffer(d3dxmesh); in D3DXLoadSkinMeshFromXof()
3602 hr = d3dxmesh->lpVtbl->LockAttributeBuffer(d3dxmesh, 0, &attrib_buffer); in D3DXLoadSkinMeshFromXof()
3610 d3dxmesh->lpVtbl->UnlockAttributeBuffer(d3dxmesh); in D3DXLoadSkinMeshFromXof()
3612 hr = d3dxmesh->lpVtbl->OptimizeInplace(d3dxmesh, in D3DXLoadSkinMeshFromXof()
3656 … hr = d3dxmesh->lpVtbl->GenerateAdjacency(d3dxmesh, 0.0f, ID3DXBuffer_GetBufferPointer(adjacency)); in D3DXLoadSkinMeshFromXof()
3660 *mesh_out = d3dxmesh; in D3DXLoadSkinMeshFromXof()
3670 if (d3dxmesh) IUnknown_Release(d3dxmesh); in D3DXLoadSkinMeshFromXof()