Home | History | Annotate | Download | only in tests

Lines Matching refs:Reporter

115 void read_and_check_pixels(skiatest::Reporter* reporter, GrTexture* texture, uint32_t* origData,
123 ERRORF(reporter, "Could not read pixels for %s.", subtestName);
132 ERRORF(reporter, "Expected 0x%08x, read back as 0x%08x in %s at %d, %d).",
142 DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SRGBReadWritePixels, reporter, ctxInfo) {
168 ERRORF(reporter, "Could not create SRGBA texture.");
181 read_and_check_pixels(reporter, tex.get(), origData, kSRGBA_8888_GrPixelConfig,
184 read_and_check_pixels(reporter, tex.get(), origData, kRGBA_8888_GrPixelConfig,
188 ERRORF(reporter, "Could not write srgba data to srgba texture.");
194 read_and_check_pixels(reporter, tex.get(), origData, kSRGBA_8888_GrPixelConfig,
197 read_and_check_pixels(reporter, tex.get(), origData, kRGBA_8888_GrPixelConfig,
201 ERRORF(reporter, "Could not write rgba data to srgba texture.");
207 ERRORF(reporter, "Could not create RGBA texture.");
213 read_and_check_pixels(reporter, tex.get(), origData, kSRGBA_8888_GrPixelConfig,
216 read_and_check_pixels(reporter, tex.get(), origData, kRGBA_8888_GrPixelConfig,
220 ERRORF(reporter, "Could not write srgba data to rgba texture.");
225 read_and_check_pixels(reporter, tex.get(), origData, kSRGBA_8888_GrPixelConfig,
229 ERRORF(reporter, "Could not write rgba data to rgba texture.");