Lines Matching refs:InterInvocationTestCase
115 class InterInvocationTestCase : public TestCase class
132 …InterInvocationTestCase (Context& context, const char* name, const char* desc, StorageType storag…
133 ~InterInvocationTestCase (void);
164 InterInvocationTestCase::InterInvocationTestCase (Context& context, const char* name, const char* d… in InterInvocationTestCase() function in deqp::gles31::Functional::__anon680164d60111::InterInvocationTestCase
184 InterInvocationTestCase::~InterInvocationTestCase (void) in ~InterInvocationTestCase()
189 void InterInvocationTestCase::init (void) in init()
262 void InterInvocationTestCase::deinit (void) in deinit()
286 InterInvocationTestCase::IterateResult InterInvocationTestCase::iterate (void) in iterate()
300 void InterInvocationTestCase::runCompute (void) in runCompute()
359 bool InterInvocationTestCase::verifyResults (void) in verifyResults()
403 std::string InterInvocationTestCase::genBarrierSource (void) const in genBarrierSource()
441 class InvocationBasicCase : public InterInvocationTestCase
451 : InterInvocationTestCase(context, name, desc, storage, flags) in InvocationBasicCase()
702 class InvocationAliasWriteCase : public InterInvocationTestCase
721 : InterInvocationTestCase (context, name, desc, storage, flags | FLAG_ALIASING_STORAGES) in InvocationAliasWriteCase()
3154 const InterInvocationTestCase::StorageType storage; in init()
3158 { "image", InterInvocationTestCase::STORAGE_IMAGE, 0 }, in init()
3159 … { "image_atomic", InterInvocationTestCase::STORAGE_IMAGE, InterInvocationTestCase::FLAG_ATOMIC }, in init()
3160 { "ssbo", InterInvocationTestCase::STORAGE_BUFFER, 0 }, in init()
3161 { "ssbo_atomic", InterInvocationTestCase::STORAGE_BUFFER, InterInvocationTestCase::FLAG_ATOMIC }, in init()
3167 const int extraFlags = (groupNdx == 0) ? (0) : (InterInvocationTestCase::FLAG_IN_GROUP); in init()
3171 …const char* const target = (configs[configNdx].storage == InterInvocationTestCase::STORAGE_BUFFER)… in init()