Home | History | Annotate | Download | only in functional

Lines Matching refs:m_lines

621 	const std::vector<ColoredLineData>	m_lines;
628 , m_lines (linesBegin, linesEnd)
636 , m_lines (convertToColoredLines(linesBegin, linesEnd))
668 for (size_t ndx = 0; ndx < m_lines.size(); ++ndx)
670 const std::string fromProperties = genClippingPointInfoString(m_lines[ndx].p0);
671 const std::string toProperties = genClippingPointInfoString(m_lines[ndx].p1);
673 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;
674 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;
694 ctx.vertexAttribPointer (positionLoc, 4, GL_FLOAT, GL_FALSE, sizeof(GLfloat[8]), &m_lines[0].p0);
695 ctx.vertexAttribPointer (colorLoc, 4, GL_FLOAT, GL_FALSE, sizeof(GLfloat[8]), &m_lines[0].c0);
697 ctx.drawArrays (GL_LINES, 0, verticesPerLine * (glw::GLsizei)m_lines.size());