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