Lines Matching refs:subCase
682 void runCase (const SubCase& subCase) in runCase() argument
689 const int width = subCase.rtSize.x(); in runCase()
690 const int height = subCase.rtSize.y(); in runCase()
691 const int numSamples = subCase.rtSize.z(); in runCase()
699 << "RT size (w, h, #samples) = " << subCase.rtSize << "\n" in runCase()
700 << "vtx[0] = " << subCase.vtx[0] << "\n" in runCase()
701 << "vtx[1] = " << subCase.vtx[1] << "\n" in runCase()
702 << "vtx[2] = " << subCase.vtx[2] << "\n" in runCase()
703 << "color = " << subCase.varying in runCase()
706 clear (interpolated.getAccess(), subCase.varying - Vec4(0.0f, 0.0f, 0.0f, 1.0f)); in runCase()
762 rr::VertexAttrib(rr::VERTEXATTRIBTYPE_FLOAT, 4, 0, 0, subCase.vtx), in runCase()
763 rr::VertexAttrib(subCase.varying) in runCase()
794 const bool verifyDepth = (subCase.vtx[0].z() == subCase.vtx[1].z()) && in runCase()
795 (subCase.vtx[1].z() == subCase.vtx[2].z()); in runCase()
796 const float refDepth = subCase.vtx[0].z()*(zf - zn)/2.0f + (zn + zf)/2.0f; in runCase()
811 const UVec4 colorDiff = ulpDiff(color, subCase.varying); in runCase()