Home | History | Annotate | Download | only in referencerenderer

Lines Matching refs:m_curPos

533 	m_curPos = m_bboxMin;
550 while (m_curPos.y() <= m_bboxMax.y() && packetNdx < maxFragmentPackets)
552 const int x0 = m_curPos.x();
553 const int y0 = m_curPos.y();
594 m_curPos.x() += 2;
595 if (m_curPos.x() > m_bboxMax.x())
597 m_curPos.y() += 2;
598 m_curPos.x() = m_bboxMin.x();
730 while (m_curPos.y() <= m_bboxMax.y() && packetNdx < maxFragmentPackets)
732 const int x0 = m_curPos.x();
733 const int y0 = m_curPos.y();
783 m_curPos.x() += 2;
784 if (m_curPos.x() > m_bboxMax.x())
786 m_curPos.y() += 2;
787 m_curPos.x() = m_bboxMin.x();
925 m_curPos = m_bboxMin;
946 while (m_curPos.y() <= m_bboxMax.y() && packetNdx < maxFragmentPackets)
948 const tcu::Vector<deInt64,2> diamondPosition = LineRasterUtil::toSubpixelVector(m_curPos) + tcu::Vector<deInt64,2>(halfPixel,halfPixel);
957 const int fragmentLocation = (isXMajor) ? (m_curPos.y()) : (m_curPos.x());
965 const tcu::IVec2 fragmentPos = m_curPos + minorDirection * replicationId;
1011 ++m_curPos.x();
1012 if (m_curPos.x() > m_bboxMax.x())
1014 ++m_curPos.y();
1015 m_curPos.x() = m_bboxMin.x();
1125 m_curPos = m_bboxMin;
1139 while (m_curPos.y() <= m_bboxMax.y() && diamondNdx < maxDiamonds)
1141 const tcu::Vector<deInt64,2> diamondPosition = LineRasterUtil::toSubpixelVector(m_curPos) + tcu::Vector<deInt64,2>(halfPixel,halfPixel);
1146 packet.position = m_curPos;
1150 ++m_curPos.x();
1151 if (m_curPos.x() > m_bboxMax.x())
1153 ++m_curPos.y();
1154 m_curPos.x() = m_bboxMin.x();