Lines Matching refs:m_lines
621 const std::vector<ColoredLineData> m_lines; member in deqp::gles3::Functional::__anon07f21dac0111::LineRenderTestCase
628 , m_lines (linesBegin, linesEnd) in LineRenderTestCase()
636 , m_lines (convertToColoredLines(linesBegin, linesEnd)) in LineRenderTestCase()
668 for (size_t ndx = 0; ndx < m_lines.size(); ++ndx) in testRender()
670 const std::string fromProperties = genClippingPointInfoString(m_lines[ndx].p0); in testRender()
671 const std::string toProperties = genClippingPointInfoString(m_lines[ndx].p1); in testRender()
673 …age << "\tfrom (x=" << m_lines[ndx].p0.x() << "\ty=" << m_lines[ndx].p0.y() << "\tz=" << m_lines[n… in testRender()
674 …age << "\tto (x=" << m_lines[ndx].p1.x() << "\ty=" << m_lines[ndx].p1.y() << "\tz=" << m_lines[n… in testRender()
694 …ctx.vertexAttribPointer (positionLoc, 4, GL_FLOAT, GL_FALSE, sizeof(GLfloat[8]), &m_lines[0].p0); in testRender()
695 ctx.vertexAttribPointer (colorLoc, 4, GL_FLOAT, GL_FALSE, sizeof(GLfloat[8]), &m_lines[0].c0); in testRender()
697 ctx.drawArrays (GL_LINES, 0, verticesPerLine * (glw::GLsizei)m_lines.size()); in testRender()