Lines Matching defs:target
488 void flatshadePrimitiveVertices (pa::Triangle& target, size_t outputNdx)
490 const rr::GenericVec4 flatValue = target.getProvokingVertex()->outputs[outputNdx];
491 target.v0->outputs[outputNdx] = flatValue;
492 target.v1->outputs[outputNdx] = flatValue;
493 target.v2->outputs[outputNdx] = flatValue;
496 void flatshadePrimitiveVertices (pa::Line& target, size_t outputNdx)
498 const rr::GenericVec4 flatValue = target.getProvokingVertex()->outputs[outputNdx];
499 target.v0->outputs[outputNdx] = flatValue;
500 target.v1->outputs[outputNdx] = flatValue;
503 void flatshadePrimitiveVertices (pa::Point& target, size_t outputNdx)
505 DE_UNREF(target);
839 void transformPrimitiveClipCoordsToWindowCoords (const RenderState& state, pa::Triangle& target)
841 transformVertexClipCoordsToWindowCoords(state, *target.v0);
842 transformVertexClipCoordsToWindowCoords(state, *target.v1);
843 transformVertexClipCoordsToWindowCoords(state, *target.v2);
846 void transformPrimitiveClipCoordsToWindowCoords (const RenderState& state, pa::Line& target)
848 transformVertexClipCoordsToWindowCoords(state, *target.v0);
849 transformVertexClipCoordsToWindowCoords(state, *target.v1);
852 void transformPrimitiveClipCoordsToWindowCoords (const RenderState& state, pa::Point& target)
854 transformVertexClipCoordsToWindowCoords(state, *target.v0);
888 void makeSharedVerticesDistinct (pa::Triangle& target, std::set<VertexPacket*, std::less<void*> >& vertices, VertexPacketAllocator& vpalloc)
890 makeSharedVerticeDistinct(target.v0, vertices, vpalloc);
891 makeSharedVerticeDistinct(target.v1, vertices, vpalloc);
892 makeSharedVerticeDistinct(target.v2, vertices, vpalloc);
895 void makeSharedVerticesDistinct (pa::Line& target, std::set<VertexPacket*, std::less<void*> >& vertices, VertexPacketAllocator& vpalloc)
897 makeSharedVerticeDistinct(target.v0, vertices, vpalloc);
898 makeSharedVerticeDistinct(target.v1, vertices, vpalloc);
901 void makeSharedVerticesDistinct (pa::Point& target, std::set<VertexPacket*, std::less<void*> >& vertices, VertexPacketAllocator& vpalloc)
903 makeSharedVerticeDistinct(target.v0, vertices, vpalloc);
915 void generatePrimitiveIDs (pa::Triangle& target, int id)
917 target.v0->primitiveID = id;
918 target.v1->primitiveID = id;
919 target.v2->primitiveID = id;
922 void generatePrimitiveIDs (pa::Line& target, int id)
924 target.v0->primitiveID = id;
925 target.v1->primitiveID = id;
928 void generatePrimitiveIDs (pa::Point& target, int id)
930 target.v0->primitiveID = id;
1334 * Draws transformed triangles, lines or points to render target