• Home
  • Raw
  • Download

Lines Matching refs:PrimitiveRestartCase

57 class PrimitiveRestartCase : public TestCase  class
91PrimitiveRestartCase (Context& context, const char* name, const char* description, PrimitiveType p…
92 ~PrimitiveRestartCase (void);
99 PrimitiveRestartCase (const PrimitiveRestartCase& other);
100 PrimitiveRestartCase& operator= (const PrimitiveRestartCase& other);
131 PrimitiveRestartCase::PrimitiveRestartCase (Context& context, const char* name, const char* descrip… in PrimitiveRestartCase() function in deqp::gles3::Functional::PrimitiveRestartCase
143 PrimitiveRestartCase::~PrimitiveRestartCase (void) in ~PrimitiveRestartCase()
145 PrimitiveRestartCase::deinit(); in ~PrimitiveRestartCase()
148 void PrimitiveRestartCase::deinit (void) in deinit()
154 void PrimitiveRestartCase::addIndex (deUint32 index) in addIndex()
175 deUint32 PrimitiveRestartCase::getIndex (int indexNdx) in getIndex()
188 int PrimitiveRestartCase::getNumIndices (void) in getNumIndices()
202 void* PrimitiveRestartCase::getIndexPtr (int indexNdx) in getIndexPtr()
215 void PrimitiveRestartCase::init (void) in init()
472 PrimitiveRestartCase::IterateResult PrimitiveRestartCase::iterate (void) in iterate()
522 void PrimitiveRestartCase::draw (int startNdx, int count) in draw()
583 void PrimitiveRestartCase::renderWithRestart (void) in renderWithRestart()
599 void PrimitiveRestartCase::renderWithoutRestart (void) in renderWithoutRestart()
673 for (int primType = 0; primType < (int)PrimitiveRestartCase::PRIMITIVE_LAST; primType++) in init()
675 const char* primTypeName = primType == (int)PrimitiveRestartCase::PRIMITIVE_POINTS ? "points" in init()
676 : primType == (int)PrimitiveRestartCase::PRIMITIVE_LINE_STRIP ? "line_strip" in init()
677 : primType == (int)PrimitiveRestartCase::PRIMITIVE_LINE_LOOP ? "line_loop" in init()
678 : primType == (int)PrimitiveRestartCase::PRIMITIVE_LINES ? "lines" in init()
679 : primType == (int)PrimitiveRestartCase::PRIMITIVE_TRIANGLE_STRIP ? "triangle_strip" in init()
680 : primType == (int)PrimitiveRestartCase::PRIMITIVE_TRIANGLE_FAN ? "triangle_fan" in init()
681 : primType == (int)PrimitiveRestartCase::PRIMITIVE_TRIANGLES ? "triangles" in init()
689 for (int indexType = 0; indexType < (int)PrimitiveRestartCase::INDEX_LAST; indexType++) in init()
691 …const char *indexTypeName = indexType == (int)PrimitiveRestartCase::INDEX_UNSIGNED_BYTE ? "unsign… in init()
692 : indexType == (int)PrimitiveRestartCase::INDEX_UNSIGNED_SHORT ? "unsigned_short" in init()
693 : indexType == (int)PrimitiveRestartCase::INDEX_UNSIGNED_INT ? "unsigned_int" in init()
701 for (int function = 0; function < (int)PrimitiveRestartCase::FUNCTION_LAST; function++) in init()
703 …const char* functionName = function == (int)PrimitiveRestartCase::FUNCTION_DRAW_ELEMENTS ? "draw… in init()
704 …: function == (int)PrimitiveRestartCase::FUNCTION_DRAW_ELEMENTS_INSTANCED ? "draw_elements_instanc… in init()
705 … : function == (int)PrimitiveRestartCase::FUNCTION_DRAW_RANGE_ELEMENTS ? "draw_range_elements" in init()
710 indexTypeGroup->addChild(new PrimitiveRestartCase(m_context, in init()
713 (PrimitiveRestartCase::PrimitiveType)primType, in init()
714 (PrimitiveRestartCase::IndexType)indexType, in init()
715 (PrimitiveRestartCase::Function)function, in init()