Lines Matching refs:SubCase
602 SubCase c;
612 SubCase c;
621 SubCase c;
630 SubCase c;
645 SubCase c;
682 tcu::ScopedLogSection section(m_testCtx.getLog(), "SubCase", "");
689 struct 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)
808 const bool verifyDepth = (subCase.vtx[0].z() == subCase.vtx[1].z()) &&
809 (subCase.vtx[1].z() == subCase.vtx[2].z());
810 const float refDepth = subCase.vtx[0].z()*(zf - zn)/2.0f + (zn + zf)/2.0f;
825 const UVec4 colorDiff = ulpDiff(color, subCase.varying);
879 vector<SubCase> m_cases;
880 vector<SubCase>::const_iterator m_caseIter;