Home | History | Annotate | Download | only in functional

Lines Matching refs:Vec3

194 		c.color.xyz() = tcu::Vec3(zNear, zFar, diff*0.5f + 0.5f);
300 const tcu::Vec3 scale (1.f / float(width), 1.f / float(height), 1.0f);
314 "uniform highp vec3 u_scale;\n"
358 const tcu::Vec3 fragCoord (float(x)+.5f, float(y)+.5f, z);
359 const tcu::Vec3 scaledFC = fragCoord*scale;
377 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, float ny)
453 ? projectedTriInterpolate(tcu::Vec3(w[0], w[1], w[2]), tcu::Vec3(w[0], w[1], w[2]), xf, yf)
454 : projectedTriInterpolate(tcu::Vec3(w[3], w[2], w[1]), tcu::Vec3(w[3], w[2], w[1]), 1.0f-xf, 1.0f-yf);
490 vector<tcu::Vec3> coords (numPoints);
506 for (vector<tcu::Vec3>::iterator coord = coords.begin(); coord != coords.end(); ++coord)
516 "in highp vec3 a_positionSize;\n"
556 for (vector<tcu::Vec3>::const_iterator pointIter = coords.begin(); pointIter != coords.end(); ++pointIter)