blob: 769c177524c12e13726355ab23e5dcd4ac7d9187 [file] [log] [blame]
Brian Osmaneee3c092017-06-15 13:25:10 -04001/*
2 * Copyright 2017 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
Mike Reedac9f0c92020-12-23 10:11:33 -05008#include "include/core/SkBitmap.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -05009#include "include/core/SkCanvas.h"
10#include "include/core/SkSurface.h"
Robert Phillips6d344c32020-07-06 10:56:46 -040011#include "include/core/SkTypes.h"
12#include "include/gpu/GrDirectContext.h"
Adlai Hollera0693042020-10-14 11:23:11 -040013#include "src/gpu/GrDirectContextPriv.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050014#include "tests/Test.h"
Brian Osmaneee3c092017-06-15 13:25:10 -040015
Brian Osmanea308102018-09-11 16:39:11 -040016static SkBitmap read_pixels(sk_sp<SkSurface> surface, SkColor initColor) {
Brian Osmaneee3c092017-06-15 13:25:10 -040017 SkBitmap bmp;
18 bmp.allocN32Pixels(surface->width(), surface->height());
Brian Osmanea308102018-09-11 16:39:11 -040019 bmp.eraseColor(initColor);
Mike Reedf1942192017-07-21 14:24:29 -040020 if (!surface->readPixels(bmp, 0, 0)) {
Brian Osmaneee3c092017-06-15 13:25:10 -040021 SkDebugf("readPixels failed\n");
22 }
23 return bmp;
24}
25
Robert Phillipse94b4e12020-07-23 13:54:35 -040026static sk_sp<SkSurface> make_surface(GrRecordingContext* rContext) {
Brian Osmaneee3c092017-06-15 13:25:10 -040027 SkImageInfo info = SkImageInfo::Make(50, 50, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
Robert Phillipse94b4e12020-07-23 13:54:35 -040028 return SkSurface::MakeRenderTarget(rContext, SkBudgeted::kNo, info, 4,
Brian Osmaneee3c092017-06-15 13:25:10 -040029 kBottomLeft_GrSurfaceOrigin, nullptr);
30}
31
Robert Phillipse94b4e12020-07-23 13:54:35 -040032static void test_bug_6653(GrDirectContext* dContext,
33 skiatest::Reporter* reporter,
34 const char* label) {
Brian Osmaneee3c092017-06-15 13:25:10 -040035 SkRect rect = SkRect::MakeWH(50, 50);
36
37 SkPaint paint;
38 paint.setColor(SK_ColorWHITE);
39 paint.setStrokeWidth(5);
40 paint.setStyle(SkPaint::kStroke_Style);
41
42 // The one device that fails this test (Galaxy S6) does so in a flaky fashion. Trying many
43 // times makes it more likely to fail. Also, interacting with the phone (eg swiping between
44 // different home screens) while the test is running makes it fail close to 100%.
45 static const int kNumIterations = 50;
46
47 for (int i = 0; i < kNumIterations; ++i) {
Robert Phillipse94b4e12020-07-23 13:54:35 -040048 auto s0 = make_surface(dContext);
Brian Osmanbcf65ed2017-06-15 14:16:08 -040049 if (!s0) {
50 // MSAA may not be supported
51 return;
52 }
Brian Osmaneee3c092017-06-15 13:25:10 -040053
Robert Phillipse94b4e12020-07-23 13:54:35 -040054 auto s1 = make_surface(dContext);
Brian Osmaneee3c092017-06-15 13:25:10 -040055 s1->getCanvas()->clear(SK_ColorBLACK);
56 s1->getCanvas()->drawOval(rect, paint);
Brian Osmanea308102018-09-11 16:39:11 -040057 SkBitmap b1 = read_pixels(s1, SK_ColorBLACK);
Brian Osmaneee3c092017-06-15 13:25:10 -040058 s1 = nullptr;
59
60 // The bug requires that all three of the following surfaces are cleared to the same color
Robert Phillipse94b4e12020-07-23 13:54:35 -040061 auto s2 = make_surface(dContext);
Brian Osmaneee3c092017-06-15 13:25:10 -040062 s2->getCanvas()->clear(SK_ColorBLUE);
Brian Osmanea308102018-09-11 16:39:11 -040063 SkBitmap b2 = read_pixels(s2, SK_ColorBLACK);
Brian Osmaneee3c092017-06-15 13:25:10 -040064 s2 = nullptr;
65
Robert Phillipse94b4e12020-07-23 13:54:35 -040066 auto s3 = make_surface(dContext);
Brian Osmaneee3c092017-06-15 13:25:10 -040067 s3->getCanvas()->clear(SK_ColorBLUE);
Mike Reed34a0c972021-01-25 17:49:32 -050068 s0->getCanvas()->drawImage(read_pixels(s3, SK_ColorBLACK).asImage(), 0, 0);
Brian Osmaneee3c092017-06-15 13:25:10 -040069 s3 = nullptr;
70
Robert Phillipse94b4e12020-07-23 13:54:35 -040071 auto s4 = make_surface(dContext);
Brian Osmaneee3c092017-06-15 13:25:10 -040072 s4->getCanvas()->clear(SK_ColorBLUE);
73 s4->getCanvas()->drawOval(rect, paint);
74
75 // When this fails, b4 will "succeed", but return an empty bitmap (containing just the
76 // clear color). Regardless, b5 will contain the oval that was just drawn, so diffing the
Brian Osmanea308102018-09-11 16:39:11 -040077 // two bitmaps tests for the failure case. Initialize the bitmaps to different colors so
78 // that if the readPixels doesn't work, this test will always fail.
79 SkBitmap b4 = read_pixels(s4, SK_ColorRED);
80 SkBitmap b5 = read_pixels(s4, SK_ColorGREEN);
Brian Osmaneee3c092017-06-15 13:25:10 -040081
82 bool match = true;
83 for (int y = 0; y < b4.height() && match; ++y) {
84 for (int x = 0; x < b4.width() && match; ++x) {
85 uint32_t pixelA = *b4.getAddr32(x, y);
86 uint32_t pixelB = *b5.getAddr32(x, y);
87 if (pixelA != pixelB) {
88 match = false;
89 }
90 }
91 }
92
Brian Osmanda01be32018-08-28 09:44:45 -040093 REPORTER_ASSERT(reporter, match, label);
Brian Osmaneee3c092017-06-15 13:25:10 -040094 }
95}
Brian Osmandd04bec2018-08-27 10:02:00 -040096
97// Tests that readPixels returns up-to-date results. This has failed on several GPUs,
98// from multiple vendors, in MSAA mode.
99DEF_GPUTEST_FOR_RENDERING_CONTEXTS(skbug6653, reporter, ctxInfo) {
Robert Phillips6d344c32020-07-06 10:56:46 -0400100 auto ctx = ctxInfo.directContext();
Brian Osmanda01be32018-08-28 09:44:45 -0400101 test_bug_6653(ctx, reporter, "Default");
Brian Osmandd04bec2018-08-27 10:02:00 -0400102}
103