Lines Matching refs:subCase
696 void runCase (const SubCase& subCase)
703 const int width = subCase.rtSize.x();
704 const int height = subCase.rtSize.y();
705 const int numSamples = subCase.rtSize.z();
713 << "RT size (w, h, #samples) = " << subCase.rtSize << "\n"
714 << "vtx[0] = " << subCase.vtx[0] << "\n"
715 << "vtx[1] = " << subCase.vtx[1] << "\n"
716 << "vtx[2] = " << subCase.vtx[2] << "\n"
717 << "color = " << subCase.varying
720 clear (interpolated.getAccess(), subCase.varying - Vec4(0.0f, 0.0f, 0.0f, 1.0f));
776 rr::VertexAttrib(rr::VERTEXATTRIBTYPE_FLOAT, 4, 0, 0, subCase.vtx),
777 rr::VertexAttrib(subCase.varying)
809 const bool verifyDepth = (subCase.vtx[0].z() == subCase.vtx[1].z()) &&
810 (subCase.vtx[1].z() == subCase.vtx[2].z());
811 const float refDepth = subCase.vtx[0].z()*(zf - zn)/2.0f + (zn + zf)/2.0f;
826 const UVec4 colorDiff = ulpDiff(color, subCase.varying);