Lines Matching refs:restartIndex
261 deUint32 restartIndex = m_indexType == INDEX_UNSIGNED_BYTE ? RESTART_INDEX_UNSIGNED_BYTE
266 DE_ASSERT(restartIndex != 0);
273 addIndex(restartIndex);
275 addIndex(restartIndex);
303 addIndex(restartIndex);
305 addIndex(restartIndex);
339 addIndex(restartIndex);
341 addIndex(restartIndex);
370 addIndex(restartIndex);
372 addIndex(restartIndex);
411 addIndex(restartIndex);
413 addIndex(restartIndex);
442 addIndex(restartIndex);
444 addIndex(restartIndex);
454 addIndex(restartIndex);
456 addIndex(restartIndex);
464 DE_ASSERT(m_beginWithRestart || getIndex(0) != restartIndex); // We don't want restarts at beginning unless the case is a special case.
465 DE_ASSERT(m_endWithRestart || getIndex(numIndices-1) != restartIndex); // We don't want restarts at end unless the case is a special case.
469 DE_ASSERT(getIndex(i) != restartIndex || getIndex(i-1) != restartIndex); // We don't want duplicate restarts unless the case is a special case.
552 deUint32 restartIndex = m_indexType == INDEX_UNSIGNED_BYTE ? RESTART_INDEX_UNSIGNED_BYTE
557 DE_ASSERT(restartIndex != 0);
575 if (index != restartIndex && index > max)
603 deUint32 restartIndex = m_indexType == INDEX_UNSIGNED_BYTE ? RESTART_INDEX_UNSIGNED_BYTE
608 DE_ASSERT(restartIndex != 0);
625 if (indexArrayNdx >= numIndices || getIndex(indexArrayNdx) == restartIndex) // \note Handle end of array the same way as a restart index encounter.