Lines Matching defs:m_points
490 const std::vector<tcu::Vec4> m_points;
497 , m_points (pointsBegin, pointsEnd)
529 for (size_t ndx = 0; ndx < m_points.size(); ++ndx)
531 << "\tx=" << m_points[ndx].x()
532 << "\ty=" << m_points[ndx].y()
533 << "\tz=" << m_points[ndx].z()
534 << "\tw=" << m_points[ndx].w()
535 << "\t" << genClippingPointInfoString(m_points[ndx])
553 ctx.vertexAttribPointer (positionLoc, 4, GL_FLOAT, GL_FALSE, 0, &m_points[0]);
556 ctx.drawArrays (GL_POINTS, 0, (glw::GLsizei)m_points.size());