Lines Matching refs:InterInvocationTestCase
130 class InterInvocationTestCase : public TestCase class
147 …InterInvocationTestCase (Context& context, const char* name, const char* desc, StorageType storag…
148 ~InterInvocationTestCase (void);
179 InterInvocationTestCase::InterInvocationTestCase (Context& context, const char* name, const char* d… in InterInvocationTestCase() function in deqp::gles31::Functional::__anon1d296c8a0111::InterInvocationTestCase
199 InterInvocationTestCase::~InterInvocationTestCase (void) in ~InterInvocationTestCase()
204 void InterInvocationTestCase::init (void) in init()
278 void InterInvocationTestCase::deinit (void) in deinit()
302 InterInvocationTestCase::IterateResult InterInvocationTestCase::iterate (void) in iterate()
316 void InterInvocationTestCase::runCompute (void) in runCompute()
375 bool InterInvocationTestCase::verifyResults (void) in verifyResults()
420 std::string InterInvocationTestCase::genBarrierSource (void) const in genBarrierSource()
458 class InvocationBasicCase : public InterInvocationTestCase
468 : InterInvocationTestCase(context, name, desc, storage, flags) in InvocationBasicCase()
719 class InvocationAliasWriteCase : public InterInvocationTestCase
738 : InterInvocationTestCase (context, name, desc, storage, flags | FLAG_ALIASING_STORAGES) in InvocationAliasWriteCase()
3173 const InterInvocationTestCase::StorageType storage; in init()
3177 { "image", InterInvocationTestCase::STORAGE_IMAGE, 0 }, in init()
3178 … { "image_atomic", InterInvocationTestCase::STORAGE_IMAGE, InterInvocationTestCase::FLAG_ATOMIC }, in init()
3179 { "ssbo", InterInvocationTestCase::STORAGE_BUFFER, 0 }, in init()
3180 { "ssbo_atomic", InterInvocationTestCase::STORAGE_BUFFER, InterInvocationTestCase::FLAG_ATOMIC }, in init()
3186 const int extraFlags = (groupNdx == 0) ? (0) : (InterInvocationTestCase::FLAG_IN_GROUP); in init()
3190 …const char* const target = (configs[configNdx].storage == InterInvocationTestCase::STORAGE_BUFFER)… in init()