blob: 17fbe47f204b7061937702bd7bd01e9066173a4f [file] [log] [blame]
csmartdalton0d28e572016-07-06 09:59:43 -07001/*
2 * Copyright 2016 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
8#include "SkTypes.h"
9#include "SkPoint.h"
10#include "Test.h"
11#include <vector>
12
13#if SK_SUPPORT_GPU
14
Brian Salomon652ecb52017-01-17 12:39:53 -050015#include "GrAppliedClip.h"
16#include "GrPipelineBuilder.h"
csmartdaltonc633abb2016-11-01 08:55:55 -070017#include "GrRenderTargetContext.h"
csmartdalton0d28e572016-07-06 09:59:43 -070018#include "GrRenderTargetPriv.h"
Brian Salomon0e8fc8b2016-12-09 15:10:07 -050019#include "GrTypesPriv.h"
csmartdalton0d28e572016-07-06 09:59:43 -070020#include "gl/GrGLGpu.h"
21#include "gl/debug/DebugGLTestContext.h"
22
23typedef std::vector<SkPoint> SamplePattern;
24
25static const SamplePattern kTestPatterns[] = {
26 SamplePattern{ // Intel on mac, msaa8, offscreen.
27 {0.562500, 0.312500},
28 {0.437500, 0.687500},
29 {0.812500, 0.562500},
30 {0.312500, 0.187500},
31 {0.187500, 0.812500},
32 {0.062500, 0.437500},
33 {0.687500, 0.937500},
34 {0.937500, 0.062500}
35 },
36
37 SamplePattern{ // Intel on mac, msaa8, on-screen.
38 {0.562500, 0.687500},
39 {0.437500, 0.312500},
40 {0.812500, 0.437500},
41 {0.312500, 0.812500},
42 {0.187500, 0.187500},
43 {0.062500, 0.562500},
44 {0.687500, 0.062500},
45 {0.937500, 0.937500}
46 },
47
48 SamplePattern{ // NVIDIA, msaa16.
49 {0.062500, 0.000000},
50 {0.250000, 0.125000},
51 {0.187500, 0.375000},
52 {0.437500, 0.312500},
53 {0.500000, 0.062500},
54 {0.687500, 0.187500},
55 {0.750000, 0.437500},
56 {0.937500, 0.250000},
57 {0.000000, 0.500000},
58 {0.312500, 0.625000},
59 {0.125000, 0.750000},
60 {0.375000, 0.875000},
61 {0.562500, 0.562500},
62 {0.812500, 0.687500},
63 {0.625000, 0.812500},
64 {0.875000, 0.937500}
65 },
66
67 SamplePattern{ // NVIDIA, mixed samples, 16:1.
68 {0.250000, 0.125000},
69 {0.625000, 0.812500},
70 {0.500000, 0.062500},
71 {0.812500, 0.687500},
72 {0.187500, 0.375000},
73 {0.875000, 0.937500},
74 {0.125000, 0.750000},
75 {0.750000, 0.437500},
76 {0.937500, 0.250000},
77 {0.312500, 0.625000},
78 {0.437500, 0.312500},
79 {0.000000, 0.500000},
80 {0.375000, 0.875000},
81 {0.687500, 0.187500},
82 {0.062500, 0.000000},
83 {0.562500, 0.562500}
84 }
85};
86constexpr int numTestPatterns = SK_ARRAY_COUNT(kTestPatterns);
87
88class TestSampleLocationsInterface : public SkNoncopyable {
89public:
90 virtual void overrideSamplePattern(const SamplePattern&) = 0;
91 virtual ~TestSampleLocationsInterface() {}
92};
93
csmartdaltonc633abb2016-11-01 08:55:55 -070094static GrPipeline* construct_dummy_pipeline(GrRenderTargetContext* dc, void* storage) {
Brian Salomon0e8fc8b2016-12-09 15:10:07 -050095 GrPipelineBuilder dummyBuilder(GrPaint(), GrAAType::kNone);
csmartdaltonc633abb2016-11-01 08:55:55 -070096 GrScissorState dummyScissor;
97 GrWindowRectsState dummyWindows;
Brian Salomon92aee3d2016-12-21 09:20:25 -050098 GrPipelineOptimizations dummyOverrides;
csmartdaltonc633abb2016-11-01 08:55:55 -070099
Brian Salomon652ecb52017-01-17 12:39:53 -0500100 GrAppliedClip dummyAppliedClip(SkRect::MakeLargest());
Brian Salomon5298dc82017-02-22 11:52:03 -0500101 GrProcessorSet::FragmentProcessorAnalysis analysis;
csmartdaltonc633abb2016-11-01 08:55:55 -0700102 GrPipeline::CreateArgs args;
Brian Salomon189098e72017-01-19 09:55:19 -0500103 dummyBuilder.initPipelineCreateArgs(&args);
csmartdaltonc633abb2016-11-01 08:55:55 -0700104 args.fRenderTargetContext = dc;
Brian Salomon5298dc82017-02-22 11:52:03 -0500105 args.fAnalysis = &analysis;
csmartdaltonc633abb2016-11-01 08:55:55 -0700106 args.fCaps = dc->caps();
Brian Salomon652ecb52017-01-17 12:39:53 -0500107 args.fAppliedClip = &dummyAppliedClip;
csmartdaltonc633abb2016-11-01 08:55:55 -0700108 args.fDstTexture = GrXferProcessor::DstTexture();
109
110 GrPipeline::CreateAt(storage, args, &dummyOverrides);
111 return reinterpret_cast<GrPipeline*>(storage);
csmartdalton0d28e572016-07-06 09:59:43 -0700112}
113
114void assert_equal(skiatest::Reporter* reporter, const SamplePattern& pattern,
115 const GrGpu::MultisampleSpecs& specs, bool flipY) {
116 GrAlwaysAssert(specs.fSampleLocations);
117 if ((int)pattern.size() != specs.fEffectiveSampleCnt) {
csmartdaltonc633abb2016-11-01 08:55:55 -0700118 REPORT_FAILURE(reporter, "", SkString("Sample pattern has wrong number of samples."));
csmartdalton0d28e572016-07-06 09:59:43 -0700119 return;
120 }
121 for (int i = 0; i < specs.fEffectiveSampleCnt; ++i) {
122 SkPoint expectedLocation = specs.fSampleLocations[i];
123 if (flipY) {
124 expectedLocation.fY = 1 - expectedLocation.fY;
125 }
126 if (pattern[i] != expectedLocation) {
csmartdaltonc633abb2016-11-01 08:55:55 -0700127 REPORT_FAILURE(reporter, "", SkString("Sample pattern has wrong sample location."));
csmartdalton0d28e572016-07-06 09:59:43 -0700128 return;
129 }
130 }
131}
132
133void test_sampleLocations(skiatest::Reporter* reporter, TestSampleLocationsInterface* testInterface,
134 GrContext* ctx) {
135 SkRandom rand;
csmartdaltonc633abb2016-11-01 08:55:55 -0700136 sk_sp<GrRenderTargetContext> bottomUps[numTestPatterns];
137 sk_sp<GrRenderTargetContext> topDowns[numTestPatterns];
csmartdalton0d28e572016-07-06 09:59:43 -0700138 for (int i = 0; i < numTestPatterns; ++i) {
139 int numSamples = (int)kTestPatterns[i].size();
140 GrAlwaysAssert(numSamples > 1 && SkIsPow2(numSamples));
csmartdaltonc633abb2016-11-01 08:55:55 -0700141 bottomUps[i] = ctx->makeRenderTargetContextWithFallback(
142 SkBackingFit::kExact, 100, 100, kRGBA_8888_GrPixelConfig, nullptr,
143 rand.nextRangeU(1 + numSamples / 2, numSamples),
144 kBottomLeft_GrSurfaceOrigin);
145 topDowns[i] = ctx->makeRenderTargetContextWithFallback(
146 SkBackingFit::kExact, 100, 100, kRGBA_8888_GrPixelConfig, nullptr,
147 rand.nextRangeU(1 + numSamples / 2, numSamples),
148 kTopLeft_GrSurfaceOrigin);
csmartdalton0d28e572016-07-06 09:59:43 -0700149 }
150
151 // Ensure all sample locations get queried and/or cached properly.
csmartdaltonc633abb2016-11-01 08:55:55 -0700152 SkAlignedSTStorage<1, GrPipeline> pipelineStorage;
csmartdalton0d28e572016-07-06 09:59:43 -0700153 for (int repeat = 0; repeat < 2; ++repeat) {
154 for (int i = 0; i < numTestPatterns; ++i) {
155 testInterface->overrideSamplePattern(kTestPatterns[i]);
csmartdaltonc633abb2016-11-01 08:55:55 -0700156 for (GrRenderTargetContext* dc : {bottomUps[i].get(), topDowns[i].get()}) {
157 GrPipeline* dummyPipe = construct_dummy_pipeline(dc, pipelineStorage.get());
158 GrRenderTarget* rt = dc->accessRenderTarget();
159 assert_equal(reporter, kTestPatterns[i],
160 rt->renderTargetPriv().getMultisampleSpecs(*dummyPipe),
161 kBottomLeft_GrSurfaceOrigin == rt->origin());
162 dummyPipe->~GrPipeline();
163 }
csmartdalton0d28e572016-07-06 09:59:43 -0700164 }
165 }
csmartdaltonc633abb2016-11-01 08:55:55 -0700166
csmartdalton0d28e572016-07-06 09:59:43 -0700167}
168
169////////////////////////////////////////////////////////////////////////////////////////////////////
170
171class GLTestSampleLocationsInterface : public TestSampleLocationsInterface, public GrGLInterface {
172public:
173 GLTestSampleLocationsInterface() : fTestContext(sk_gpu_test::CreateDebugGLTestContext()) {
174 fStandard = fTestContext->gl()->fStandard;
175 fExtensions = fTestContext->gl()->fExtensions;
176 fFunctions = fTestContext->gl()->fFunctions;
177
178 fFunctions.fGetIntegerv = [&](GrGLenum pname, GrGLint* params) {
179 GrAlwaysAssert(GR_GL_EFFECTIVE_RASTER_SAMPLES != pname);
180 if (GR_GL_SAMPLES == pname) {
181 GrAlwaysAssert(!fSamplePattern.empty());
182 *params = (int)fSamplePattern.size();
183 } else {
184 fTestContext->gl()->fFunctions.fGetIntegerv(pname, params);
185 }
186 };
187
188 fFunctions.fGetMultisamplefv = [&](GrGLenum pname, GrGLuint index, GrGLfloat* val) {
189 GrAlwaysAssert(GR_GL_SAMPLE_POSITION == pname);
190 val[0] = fSamplePattern[index].fX;
191 val[1] = fSamplePattern[index].fY;
192 };
193 }
194
195 operator GrBackendContext() {
196 return reinterpret_cast<GrBackendContext>(static_cast<GrGLInterface*>(this));
197 }
198
199 void overrideSamplePattern(const SamplePattern& newPattern) override {
200 fSamplePattern = newPattern;
201 }
202
203private:
Ben Wagner145dbcd2016-11-03 14:40:50 -0400204 std::unique_ptr<sk_gpu_test::GLTestContext> fTestContext;
csmartdalton0d28e572016-07-06 09:59:43 -0700205 SamplePattern fSamplePattern;
206};
207
208DEF_GPUTEST(GLSampleLocations, reporter, /*factory*/) {
209 GLTestSampleLocationsInterface testInterface;
Hal Canary342b7ac2016-11-04 11:49:42 -0400210 sk_sp<GrContext> ctx(GrContext::Create(kOpenGL_GrBackend, testInterface));
211 test_sampleLocations(reporter, &testInterface, ctx.get());
csmartdalton0d28e572016-07-06 09:59:43 -0700212}
213
214#endif