• Home
  • Raw
  • Download

Lines Matching refs:InterInvocationTestCase

137 class InterInvocationTestCase : public TestCase  class
154InterInvocationTestCase (Context& context, const char* name, const char* desc, StorageType storag…
155 ~InterInvocationTestCase (void);
186 InterInvocationTestCase::InterInvocationTestCase (Context& context, const char* name, const char* d… in InterInvocationTestCase() function in deqp::gles31::Functional::__anon0bfec22f0111::InterInvocationTestCase
206 InterInvocationTestCase::~InterInvocationTestCase (void) in ~InterInvocationTestCase()
211 void InterInvocationTestCase::init (void) in init()
284 void InterInvocationTestCase::deinit (void) in deinit()
308 InterInvocationTestCase::IterateResult InterInvocationTestCase::iterate (void) in iterate()
322 void InterInvocationTestCase::runCompute (void) in runCompute()
381 bool InterInvocationTestCase::verifyResults (void) in verifyResults()
426 std::string InterInvocationTestCase::genBarrierSource (void) const in genBarrierSource()
464 class InvocationBasicCase : public InterInvocationTestCase
474 : InterInvocationTestCase(context, name, desc, storage, flags) in InvocationBasicCase()
725 class InvocationAliasWriteCase : public InterInvocationTestCase
744 : InterInvocationTestCase (context, name, desc, storage, flags | FLAG_ALIASING_STORAGES) in InvocationAliasWriteCase()
3177 const InterInvocationTestCase::StorageType storage; in init()
3181 { "image", InterInvocationTestCase::STORAGE_IMAGE, 0 }, in init()
3182 … { "image_atomic", InterInvocationTestCase::STORAGE_IMAGE, InterInvocationTestCase::FLAG_ATOMIC }, in init()
3183 { "ssbo", InterInvocationTestCase::STORAGE_BUFFER, 0 }, in init()
3184 { "ssbo_atomic", InterInvocationTestCase::STORAGE_BUFFER, InterInvocationTestCase::FLAG_ATOMIC }, in init()
3190 const int extraFlags = (groupNdx == 0) ? (0) : (InterInvocationTestCase::FLAG_IN_GROUP); in init()
3194 …const char* const target = (configs[configNdx].storage == InterInvocationTestCase::STORAGE_BUFFER)… in init()