Searched defs:VertexPacket (Results 1 - 2 of 2) sorted by relevance

/external/deqp/framework/referencerenderer/
H A DrrVertexPacket.cpp29 VertexPacket::VertexPacket (void) function in class:rr::VertexPacket
33 VertexPacket::~VertexPacket (void)
49 std::vector<VertexPacket*> VertexPacketAllocator::allocArray (size_t count)
52 return std::vector<VertexPacket*>();
55 const size_t packetSize = sizeof(VertexPacket) + extraVaryings * sizeof(GenericVec4);
57 std::vector<VertexPacket*> retVal;
65 retVal.push_back(new (ptr + i*packetSize) VertexPacket()); // throws bad_alloc
78 VertexPacket* VertexPacketAllocato
[all...]
H A DrrVertexPacket.hpp50 * VertexPacket instance must be created by VertexPacketAllocator as
53 struct VertexPacket struct in namespace:rr
69 VertexPacket (void);
70 VertexPacket (const VertexPacket&); // disabled, non-copyable
71 ~VertexPacket (void);
74 VertexPacket& operator= (const VertexPacket&); // disabled, non-copyable
100 std::vector<VertexPacket*> allocArray (size_t count); // throws bad_alloc
101 VertexPacket* allo
[all...]

Completed in 116 milliseconds