Lines Matching refs:m_polys
856 const std::vector<TriangleData> m_polys; member in deqp::gles2::Functional::__anon1ee7734a0111::TriangleCaseBase
862 , m_polys (polysBegin, polysEnd) in TriangleCaseBase()
888 for (size_t ndx = 0; ndx < m_polys.size(); ++ndx) in testRender()
890 const std::string v0Properties = genClippingPointInfoString(m_polys[ndx].p0); in testRender()
891 const std::string v1Properties = genClippingPointInfoString(m_polys[ndx].p1); in testRender()
892 const std::string v2Properties = genClippingPointInfoString(m_polys[ndx].p2); in testRender()
893 const std::string c0Properties = genColorString(m_polys[ndx].c0); in testRender()
894 const std::string c1Properties = genColorString(m_polys[ndx].c1); in testRender()
895 const std::string c2Properties = genColorString(m_polys[ndx].c2); in testRender()
897 …ssage << "\tv0 (x=" << m_polys[ndx].p0.x() << "\ty=" << m_polys[ndx].p0.y() << "\tz=" << m_polys[n… in testRender()
898 …ssage << "\tv1 (x=" << m_polys[ndx].p1.x() << "\ty=" << m_polys[ndx].p1.y() << "\tz=" << m_polys[n… in testRender()
899 …ssage << "\tv2 (x=" << m_polys[ndx].p2.x() << "\ty=" << m_polys[ndx].p2.y() << "\tz=" << m_polys[n… in testRender()
919 …ctx.vertexAttribPointer (positionLoc, 4, GL_FLOAT, GL_FALSE, sizeof(GLfloat[8]), &m_polys[0].p0); in testRender()
920 ctx.vertexAttribPointer (colorLoc, 4, GL_FLOAT, GL_FALSE, sizeof(GLfloat[8]), &m_polys[0].c0); in testRender()
921 ctx.drawArrays (GL_TRIANGLES, 0, verticesPerTriangle * (glw::GLsizei)m_polys.size()); in testRender()