Lines Matching defs:dst
1357 void copyVertexPacketPointers(const VertexPacket** dst, const pa::Point& in)
1359 dst[0] = in.v0;
1362 void copyVertexPacketPointers(const VertexPacket** dst, const pa::Line& in)
1364 dst[0] = in.v0;
1365 dst[1] = in.v1;
1368 void copyVertexPacketPointers(const VertexPacket** dst, const pa::Triangle& in)
1370 dst[0] = in.v0;
1371 dst[1] = in.v1;
1372 dst[2] = in.v2;
1375 void copyVertexPacketPointers(const VertexPacket** dst, const pa::LineAdjacency& in)
1377 dst[0] = in.v0;
1378 dst[1] = in.v1;
1379 dst[2] = in.v2;
1380 dst[3] = in.v3;
1383 void copyVertexPacketPointers(const VertexPacket** dst, const pa::TriangleAdjacency& in)
1385 dst[0] = in.v0;
1386 dst[1] = in.v1;
1387 dst[2] = in.v2;
1388 dst[3] = in.v3;
1389 dst[4] = in.v4;
1390 dst[5] = in.v5;