Lines Matching refs:context_info
197 #define DEF_GPUTEST_FOR_CONTEXTS(name, context_filter, reporter, context_info) \ argument
199 const sk_gpu_test::ContextInfo& context_info); \
207 const sk_gpu_test::ContextInfo& context_info)
209 #define DEF_GPUTEST_FOR_ALL_CONTEXTS(name, reporter, context_info) \ argument
210 DEF_GPUTEST_FOR_CONTEXTS(name, nullptr, reporter, context_info)
211 #define DEF_GPUTEST_FOR_RENDERING_CONTEXTS(name, reporter, context_info) \ argument
213 reporter, context_info)
214 #define DEF_GPUTEST_FOR_ALL_GL_CONTEXTS(name, reporter, context_info) \ argument
215 DEF_GPUTEST_FOR_CONTEXTS(name, &skiatest::IsGLContextType, reporter, context_info)
216 #define DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(name, reporter, context_info) \ argument
217 DEF_GPUTEST_FOR_CONTEXTS(name, &skiatest::IsRenderingGLContextType, reporter, context_info)
218 #define DEF_GPUTEST_FOR_NULLGL_CONTEXT(name, reporter, context_info) \ argument
219 DEF_GPUTEST_FOR_CONTEXTS(name, &skiatest::IsNullGLContextType, reporter, context_info)
220 #define DEF_GPUTEST_FOR_VULKAN_CONTEXT(name, reporter, context_info) \ argument
221 DEF_GPUTEST_FOR_CONTEXTS(name, &skiatest::IsVulkanContextType, reporter, context_info)