• Home
  • Raw
  • Download

Lines Matching refs:skiatest

17 namespace skiatest {
35 virtual void reportFailed(const skiatest::Failure&) = 0;
40 void reportFailedWithContext(const skiatest::Failure&);
54 reporter->reportFailedWithContext(skiatest::Failure(__FILE__, __LINE__, cond, message))
69 typedef void (*TestProc)(skiatest::Reporter*, const GrContextOptions&);
86 void run(skiatest::Reporter* r, const GrContextOptions& options) const { in run()
168 static void test_##name(skiatest::Reporter*, const GrContextOptions&); \
169 skiatest::TestRegistry name##TestRegistry(skiatest::Test(#name, false, test_##name)); \
170 void test_##name(skiatest::Reporter* reporter, const GrContextOptions&)
173 static void test_##name(skiatest::Reporter*, const GrContextOptions&); \
174 skiatest::TestRegistry name##TestRegistry(skiatest::Test(#name, true, test_##name)); \
175 void test_##name(skiatest::Reporter* reporter, const GrContextOptions& options)
178 static void test_##name(skiatest::Reporter*, const sk_gpu_test::ContextInfo& context_info); \
179 static void test_gpu_contexts_##name(skiatest::Reporter* reporter, \
181 skiatest::RunWithGPUTestContexts(test_##name, context_filter, reporter, options); \
183 skiatest::TestRegistry name##TestRegistry( \
184 skiatest::Test(#name, true, test_gpu_contexts_##name, options_filter)); \
185 void test_##name(skiatest::Reporter* reporter, const sk_gpu_test::ContextInfo& context_info)
194 DEF_GPUTEST_FOR_CONTEXTS(name, &skiatest::IsGLContextType, \
197 DEF_GPUTEST_FOR_CONTEXTS(name, &skiatest::IsRenderingGLContextType, \
200 DEF_GPUTEST_FOR_CONTEXTS(name, &skiatest::IsMockContextType, \
203 DEF_GPUTEST_FOR_CONTEXTS(name, &skiatest::IsVulkanContextType, \
206 DEF_GPUTEST_FOR_CONTEXTS(name, &skiatest::IsMetalContextType, \