Lines Matching defs:m_lines
618 const std::vector<ColoredLineData> m_lines;
625 , m_lines (linesBegin, linesEnd)
633 , m_lines (convertToColoredLines(linesBegin, linesEnd))
665 for (size_t ndx = 0; ndx < m_lines.size(); ++ndx)
667 const std::string fromProperties = genClippingPointInfoString(m_lines[ndx].p0);
668 const std::string toProperties = genClippingPointInfoString(m_lines[ndx].p1);
670 log << TestLog::Message << "\tfrom (x=" << m_lines[ndx].p0.x() << "\ty=" << m_lines[ndx].p0.y() << "\tz=" << m_lines[ndx].p0.z() << "\tw=" << m_lines[ndx].p0.w() << ")\t" << fromProperties << TestLog::EndMessage;
671 log << TestLog::Message << "\tto (x=" << m_lines[ndx].p1.x() << "\ty=" << m_lines[ndx].p1.y() << "\tz=" << m_lines[ndx].p1.z() << "\tw=" << m_lines[ndx].p1.w() << ")\t" << toProperties << TestLog::EndMessage;
691 ctx.vertexAttribPointer (positionLoc, 4, GL_FLOAT, GL_FALSE, sizeof(GLfloat[8]), &m_lines[0].p0);
692 ctx.vertexAttribPointer (colorLoc, 4, GL_FLOAT, GL_FALSE, sizeof(GLfloat[8]), &m_lines[0].c0);
694 ctx.drawArrays (GL_LINES, 0, verticesPerLine * (glw::GLsizei)m_lines.size());