Lines Matching refs:m_curPos
492 m_curPos = m_bboxMin;
502 while (m_curPos.y() <= m_bboxMax.y() && packetNdx < maxFragmentPackets)
504 const int x0 = m_curPos.x();
505 const int y0 = m_curPos.y();
546 m_curPos.x() += 2;
547 if (m_curPos.x() > m_bboxMax.x())
549 m_curPos.y() += 2;
550 m_curPos.x() = m_bboxMin.x();
678 while (m_curPos.y() <= m_bboxMax.y() && packetNdx < maxFragmentPackets)
680 const int x0 = m_curPos.x();
681 const int y0 = m_curPos.y();
731 m_curPos.x() += 2;
732 if (m_curPos.x() > m_bboxMax.x())
734 m_curPos.y() += 2;
735 m_curPos.x() = m_bboxMin.x();
875 m_curPos = m_bboxMin;
894 while (m_curPos.y() <= m_bboxMax.y() && packetNdx < maxFragmentPackets)
896 const tcu::Vector<deInt64,2> diamondPosition = LineRasterUtil::toSubpixelVector(m_curPos) + tcu::Vector<deInt64,2>(halfPixel,halfPixel);
907 const int fragmentLocation = (isXMajor) ? (m_curPos.y()) : (m_curPos.x());
915 const tcu::IVec2 fragmentPos = m_curPos + minorDirection * (rowFragBegin + m_curRowFragment);
961 ++m_curPos.x();
962 if (m_curPos.x() > m_bboxMax.x())
964 ++m_curPos.y();
965 m_curPos.x() = m_bboxMin.x();