Lines Matching defs:testCtx
186 ScissorCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char *name, const char* desc, const Vec4& scissorArea);
201 ScissorCase::ScissorCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char *name, const char* desc, const Vec4& scissorArea)
202 : TestCase (testCtx, name, desc)
305 ScissorPrimitiveCase (tcu::TestContext& testCtx,
325 ScissorPrimitiveCase::ScissorPrimitiveCase (tcu::TestContext& testCtx,
333 : ScissorCase (testCtx, renderCtx, name, desc, scissorArea)
424 ScissorClearCase (tcu::TestContext& testCtx,
442 ScissorClearCase::ScissorClearCase (tcu::TestContext& testCtx,
448 : ScissorCase (testCtx, renderCtx, name, desc, scissorArea)
505 FramebufferBlitCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* desc, const Vec4& scissorArea);
522 FramebufferBlitCase::FramebufferBlitCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* desc, const Vec4& scissorArea)
523 : ScissorCase(testCtx, renderCtx, name, desc, scissorArea)
604 FramebufferClearCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* desc, ClearType clearType);
622 FramebufferClearCase::FramebufferClearCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* desc, ClearType clearType)
623 : tcu::TestCase (testCtx, name, desc)
883 tcu::TestNode* createPrimitiveTest (tcu::TestContext& testCtx,
892 return new ScissorPrimitiveCase(testCtx, renderCtx, name, desc, scissorArea, renderArea, type, primitiveCount);
895 tcu::TestNode* createClearTest (tcu::TestContext& testCtx,
902 return new ScissorClearCase(testCtx, renderCtx, name, desc, scissorArea, clearMode);
905 tcu::TestNode* createFramebufferClearTest (tcu::TestContext& testCtx,
911 return new FramebufferClearCase(testCtx, renderCtx, name, desc, clearType);
914 tcu::TestNode* createFramebufferBlitTest (tcu::TestContext& testCtx,
920 return new FramebufferBlitCase(testCtx, renderCtx, name, desc, scissorArea);