Home | History | Annotate | Download | only in referencerenderer

Lines Matching refs:m_curPos

528 	m_curPos = m_bboxMin;
545 while (m_curPos.y() <= m_bboxMax.y() && packetNdx < maxFragmentPackets)
547 const int x0 = m_curPos.x();
548 const int y0 = m_curPos.y();
589 m_curPos.x() += 2;
590 if (m_curPos.x() > m_bboxMax.x())
592 m_curPos.y() += 2;
593 m_curPos.x() = m_bboxMin.x();
725 while (m_curPos.y() <= m_bboxMax.y() && packetNdx < maxFragmentPackets)
727 const int x0 = m_curPos.x();
728 const int y0 = m_curPos.y();
778 m_curPos.x() += 2;
779 if (m_curPos.x() > m_bboxMax.x())
781 m_curPos.y() += 2;
782 m_curPos.x() = m_bboxMin.x();
920 m_curPos = m_bboxMin;
941 while (m_curPos.y() <= m_bboxMax.y() && packetNdx < maxFragmentPackets)
943 const tcu::Vector<deInt64,2> diamondPosition = LineRasterUtil::toSubpixelVector(m_curPos) + tcu::Vector<deInt64,2>(halfPixel,halfPixel);
952 const int fragmentLocation = (isXMajor) ? (m_curPos.y()) : (m_curPos.x());
960 const tcu::IVec2 fragmentPos = m_curPos + minorDirection * replicationId;
1006 ++m_curPos.x();
1007 if (m_curPos.x() > m_bboxMax.x())
1009 ++m_curPos.y();
1010 m_curPos.x() = m_bboxMin.x();
1120 m_curPos = m_bboxMin;
1134 while (m_curPos.y() <= m_bboxMax.y() && diamondNdx < maxDiamonds)
1136 const tcu::Vector<deInt64,2> diamondPosition = LineRasterUtil::toSubpixelVector(m_curPos) + tcu::Vector<deInt64,2>(halfPixel,halfPixel);
1141 packet.position = m_curPos;
1145 ++m_curPos.x();
1146 if (m_curPos.x() > m_bboxMax.x())
1148 ++m_curPos.y();
1149 m_curPos.x() = m_bboxMin.x();