Lines Matching defs:packet

68 			rr::VertexPacket* const packet	= packets[packetNdx];
70 readVertexAttrib(position, inputs[0], packet->instanceNdx, packet->vertexNdx);
71 readVertexAttrib(color, inputs[1], packet->instanceNdx, packet->vertexNdx);
73 packet->outputs[0] = position;
74 packet->outputs[1] = color;
75 packet->position = position;
106 rr::VertexPacket* const packet = packets[packetNdx];
108 readVertexAttrib(position, inputs[0], packet->instanceNdx, packet->vertexNdx);
109 readVertexAttrib(color0, inputs[1], packet->instanceNdx, packet->vertexNdx);
110 readVertexAttrib(color1, inputs[2], packet->instanceNdx, packet->vertexNdx);
112 packet->outputs[0] = position;
113 packet->outputs[1] = color0;
114 packet->outputs[2] = color1;
115 packet->position = position;
143 rr::VertexPacket* const packet = packets[packetNdx];
145 readVertexAttrib(position, inputs[0], packet->instanceNdx, packet->vertexNdx);
146 readVertexAttrib(texCoord, inputs[1], packet->instanceNdx, packet->vertexNdx);
148 packet->outputs[0] = position;
149 packet->outputs[1] = texCoord;
150 packet->position = position;
188 const rr::FragmentPacket& packet = packets[packetNdx];
198 const tcu::Vec4 vtxPosition = rr::readVarying<float>(packet, context, 0, fragNdx);
205 const tcu::Vec4 vtxColor = rr::readVarying<float>(packet, context, 1, fragNdx);
244 const rr::FragmentPacket& packet = packets[packetNdx];
250 const tcu::Vec4 vtxPosition = rr::readVarying<float>(packet, context, 0, fragNdx);
257 const tcu::Vec4 vtxColor0 = rr::readVarying<float>(packet, context, 1, fragNdx);
258 const tcu::Vec4 vtxColor1 = rr::readVarying<float>(packet, context, 2, fragNdx);
286 const rr::FragmentPacket& packet = packets[packetNdx];
290 const tcu::Vec4 vtxTexCoord = rr::readVarying<float>(packet, context, 1, fragNdx);