Lines Matching refs:p0
31 void drawQuad (sglr::Context& ctx, deUint32 program, const tcu::Vec3& p0, const tcu::Vec3& p1)
36 drawQuadWithVaoBuffers(ctx, program, p0, p1);
40 drawQuadWithClientPointers(ctx, program, p0, p1);
44 void drawQuadWithVaoBuffers (sglr::Context& ctx, deUint32 program, const tcu::Vec3& p0, const tcu::Vec3& p1)
47 float hz = (p0.z() + p1.z()) * 0.5f;
50 p0.x(), p0.y(), p0.z(), 1.0f,
51 p0.x(), p1.y(), hz, 1.0f,
52 p1.x(), p0.y(), hz, 1.0f,
114 void drawQuadWithClientPointers (sglr::Context& ctx, deUint32 program, const tcu::Vec3& p0, const tcu::Vec3& p1)
117 float hz = (p0.z() + p1.z()) * 0.5f;
120 p0.x(), p0.y(), p0.z(), 1.0f,
121 p0.x(), p1.y(), hz, 1.0f,
122 p1.x(), p0.y(), hz, 1.0f,