Lines Matching refs:m_polys

860 	const std::vector<TriangleData>		m_polys;  member in deqp::gles3::Functional::__anon07f21dac0111::TriangleCaseBase
866 , m_polys (polysBegin, polysEnd) in TriangleCaseBase()
892 for (size_t ndx = 0; ndx < m_polys.size(); ++ndx) in testRender()
894 const std::string v0Properties = genClippingPointInfoString(m_polys[ndx].p0); in testRender()
895 const std::string v1Properties = genClippingPointInfoString(m_polys[ndx].p1); in testRender()
896 const std::string v2Properties = genClippingPointInfoString(m_polys[ndx].p2); in testRender()
897 const std::string c0Properties = genColorString(m_polys[ndx].c0); in testRender()
898 const std::string c1Properties = genColorString(m_polys[ndx].c1); in testRender()
899 const std::string c2Properties = genColorString(m_polys[ndx].c2); in testRender()
901 …ssage << "\tv0 (x=" << m_polys[ndx].p0.x() << "\ty=" << m_polys[ndx].p0.y() << "\tz=" << m_polys[n… in testRender()
902 …ssage << "\tv1 (x=" << m_polys[ndx].p1.x() << "\ty=" << m_polys[ndx].p1.y() << "\tz=" << m_polys[n… in testRender()
903 …ssage << "\tv2 (x=" << m_polys[ndx].p2.x() << "\ty=" << m_polys[ndx].p2.y() << "\tz=" << m_polys[n… in testRender()
923 …ctx.vertexAttribPointer (positionLoc, 4, GL_FLOAT, GL_FALSE, sizeof(GLfloat[8]), &m_polys[0].p0); in testRender()
924 ctx.vertexAttribPointer (colorLoc, 4, GL_FLOAT, GL_FALSE, sizeof(GLfloat[8]), &m_polys[0].c0); in testRender()
925 ctx.drawArrays (GL_TRIANGLES, 0, verticesPerTriangle * (glw::GLsizei)m_polys.size()); in testRender()