• Home
  • Raw
  • Download

Lines Matching refs:PartialUpdateTest

73 class PartialUpdateTest : public TestCase  class
82 PartialUpdateTest (EglTestContext& eglTestCtx,
87 ~PartialUpdateTest (void);
133 DrawCommand (const PartialUpdateTest::DrawType drawType_, const ColoredRect& rect_);
134 PartialUpdateTest::DrawType drawType;
138 DrawCommand::DrawCommand (const PartialUpdateTest::DrawType drawType_, const ColoredRect& rect_) in DrawCommand()
162 void generateRandomFrame (Frame& dst, const vector<PartialUpdateTest::DrawType>& drawTypes, de::Ran… in generateRandomFrame()
252 if (frame.draws[drawNdx].drawType == PartialUpdateTest::DRAWTYPE_GLES2_RENDER) in render()
302 else if (frame.draws[drawNdx].drawType == PartialUpdateTest::DRAWTYPE_GLES2_CLEAR) in render()
335 …e.draws[drawNdx].drawType == PartialUpdateTest::DRAWTYPE_GLES2_RENDER || frame.draws[drawNdx].draw… in render()
350 PartialUpdateTest::PartialUpdateTest (EglTestContext& eglTestCtx, in PartialUpdateTest() function in deqp::egl::__anonf02170d80111::PartialUpdateTest
368 PartialUpdateTest::~PartialUpdateTest (void) in ~PartialUpdateTest()
373 void PartialUpdateTest::init (void) in init()
395 void PartialUpdateTest::deinit (void) in deinit()
428 void PartialUpdateTest::initEGLSurface (EGLConfig config) in initEGLSurface()
436 void PartialUpdateTest::initEGLContext (EGLConfig config) in initEGLContext()
487 TestCase::IterateResult PartialUpdateTest::iterate (void) in iterate()
597 string generateDrawTypeName (const vector<PartialUpdateTest::DrawType>& drawTypes) in generateDrawTypeName()
605 if (drawTypes[ndx] == PartialUpdateTest::DRAWTYPE_GLES2_RENDER) in generateDrawTypeName()
607 else if (drawTypes[ndx] == PartialUpdateTest::DRAWTYPE_GLES2_CLEAR) in generateDrawTypeName()
615 …tring generateTestName (const vector<PartialUpdateTest::DrawType>& oddFrameDrawType, const vector< in generateTestName()
666 class RenderOutsideDamageRegion : public PartialUpdateTest
674 …: PartialUpdateTest (eglTestCtx, vector<DrawType>(1, DRAWTYPE_GLES2_RENDER), vector<DrawType>(1, D… in RenderOutsideDamageRegion()
728 class RenderBeforeSetDamageRegion : public PartialUpdateTest
736 …: PartialUpdateTest (eglTestCtx, vector<DrawType>(1, DRAWTYPE_GLES2_RENDER), vector<DrawType>(1, D… in RenderBeforeSetDamageRegion()
798 const PartialUpdateTest::DrawType clearRender[2] = in init()
800 PartialUpdateTest::DRAWTYPE_GLES2_CLEAR, in init()
801 PartialUpdateTest::DRAWTYPE_GLES2_RENDER in init()
804 const PartialUpdateTest::DrawType renderClear[2] = in init()
806 PartialUpdateTest::DRAWTYPE_GLES2_RENDER, in init()
807 PartialUpdateTest::DRAWTYPE_GLES2_CLEAR in init()
810 vector< vector<PartialUpdateTest::DrawType> > frameDrawTypes; in init()
811 frameDrawTypes.push_back(vector<PartialUpdateTest::DrawType> ()); in init()
812 …frameDrawTypes.push_back(vector<PartialUpdateTest::DrawType> (1, PartialUpdateTest::DRAWTYPE_GLES2… in init()
813 …frameDrawTypes.push_back(vector<PartialUpdateTest::DrawType> (1, PartialUpdateTest::DRAWTYPE_GLES2… in init()
814 …frameDrawTypes.push_back(vector<PartialUpdateTest::DrawType> (2, PartialUpdateTest::DRAWTYPE_GLES2… in init()
815 …frameDrawTypes.push_back(vector<PartialUpdateTest::DrawType> (2, PartialUpdateTest::DRAWTYPE_GLES2… in init()
816 …frameDrawTypes.push_back(vector<PartialUpdateTest::DrawType> (DE_ARRAY_BEGIN(clearRender), DE_ARRA… in init()
817 …frameDrawTypes.push_back(vector<PartialUpdateTest::DrawType> (DE_ARRAY_BEGIN(renderClear), DE_ARRA… in init()
821 const vector<PartialUpdateTest::DrawType>& evenFrameDrawType = frameDrawTypes[evenNdx]; in init()
825 const vector<PartialUpdateTest::DrawType>& oddFrameDrawType = frameDrawTypes[oddNdx]; in init()
830 …addChild(new PartialUpdateTest(m_eglTestCtx, oddFrameDrawType, evenFrameDrawType, name.c_str(), ""… in init()