Home | History | Annotate | Download | only in tests

Lines Matching refs:Reporter

52 void basic_texture_test(skiatest::Reporter* reporter, GrContext* context, GrPixelConfig config,
87 REPORTER_ASSERT(reporter, canCreate);
89 REPORTER_ASSERT(reporter, does_full_buffer_contain_correct_color(srcBuffer,
98 REPORTER_ASSERT(reporter, does_full_buffer_contain_correct_color(srcBuffer,
106 REPORTER_ASSERT(reporter, !canCreate);
112 REPORTER_ASSERT(reporter, canCreate);
114 REPORTER_ASSERT(reporter, does_full_buffer_contain_correct_color(srcBuffer,
123 REPORTER_ASSERT(reporter, does_full_buffer_contain_correct_color(srcBuffer,
131 REPORTER_ASSERT(reporter, !canCreate);
135 DEF_GPUTEST_FOR_VULKAN_CONTEXT(VkUploadPixelsTests, reporter, ctxInfo) {
136 basic_texture_test(reporter, ctxInfo.grContext(), kRGBA_8888_GrPixelConfig, false, false);
137 basic_texture_test(reporter, ctxInfo.grContext(), kRGBA_8888_GrPixelConfig, true, false);
138 basic_texture_test(reporter, ctxInfo.grContext(), kRGBA_8888_GrPixelConfig, false, true);
139 basic_texture_test(reporter, ctxInfo.grContext(), kRGBA_8888_GrPixelConfig, true, true);
140 basic_texture_test(reporter, ctxInfo.grContext(), kBGRA_8888_GrPixelConfig, false, false);
141 basic_texture_test(reporter, ctxInfo.grContext(), kBGRA_8888_GrPixelConfig, true, false);
142 basic_texture_test(reporter, ctxInfo.grContext(), kBGRA_8888_GrPixelConfig, false, true);
143 basic_texture_test(reporter, ctxInfo.grContext(), kBGRA_8888_GrPixelConfig, true, true);