Lines Matching full:restartindex
246 deUint32 restartIndex = m_indexType == INDEX_UNSIGNED_BYTE ? RESTART_INDEX_UNSIGNED_BYTE
251 DE_ASSERT(restartIndex != 0);
258 addIndex(restartIndex);
260 addIndex(restartIndex);
288 addIndex(restartIndex);
290 addIndex(restartIndex);
324 addIndex(restartIndex);
326 addIndex(restartIndex);
355 addIndex(restartIndex);
357 addIndex(restartIndex);
396 addIndex(restartIndex);
398 addIndex(restartIndex);
427 addIndex(restartIndex);
429 addIndex(restartIndex);
439 addIndex(restartIndex);
441 addIndex(restartIndex);
449 DE_ASSERT(m_beginWithRestart || getIndex(0) != restartIndex); // We don't want restarts at beginning unless the case is a special case.
450 DE_ASSERT(m_endWithRestart || getIndex(numIndices-1) != restartIndex); // We don't want restarts at end unless the case is a special case.
454 DE_ASSERT(getIndex(i) != restartIndex || getIndex(i-1) != restartIndex); // We don't want duplicate restarts unless the case is a special case.
537 deUint32 restartIndex = m_indexType == INDEX_UNSIGNED_BYTE ? RESTART_INDEX_UNSIGNED_BYTE
542 DE_ASSERT(restartIndex != 0);
560 if (index != restartIndex && index > max)
588 deUint32 restartIndex = m_indexType == INDEX_UNSIGNED_BYTE ? RESTART_INDEX_UNSIGNED_BYTE
593 DE_ASSERT(restartIndex != 0);
610 if (indexArrayNdx >= numIndices || getIndex(indexArrayNdx) == restartIndex) // \note Handle end of array the same way as a restart index encounter.