csmartdalton | 0d28e57 | 2016-07-06 09:59:43 -0700 | [diff] [blame] | 1 | /* |
| 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 Salomon | 652ecb5 | 2017-01-17 12:39:53 -0500 | [diff] [blame] | 15 | #include "GrAppliedClip.h" |
| 16 | #include "GrPipelineBuilder.h" |
csmartdalton | c633abb | 2016-11-01 08:55:55 -0700 | [diff] [blame] | 17 | #include "GrRenderTargetContext.h" |
csmartdalton | 0d28e57 | 2016-07-06 09:59:43 -0700 | [diff] [blame] | 18 | #include "GrRenderTargetPriv.h" |
Brian Salomon | 0e8fc8b | 2016-12-09 15:10:07 -0500 | [diff] [blame] | 19 | #include "GrTypesPriv.h" |
csmartdalton | 0d28e57 | 2016-07-06 09:59:43 -0700 | [diff] [blame] | 20 | #include "gl/GrGLGpu.h" |
| 21 | #include "gl/debug/DebugGLTestContext.h" |
| 22 | |
| 23 | typedef std::vector<SkPoint> SamplePattern; |
| 24 | |
| 25 | static 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 | }; |
| 86 | constexpr int numTestPatterns = SK_ARRAY_COUNT(kTestPatterns); |
| 87 | |
| 88 | class TestSampleLocationsInterface : public SkNoncopyable { |
| 89 | public: |
| 90 | virtual void overrideSamplePattern(const SamplePattern&) = 0; |
| 91 | virtual ~TestSampleLocationsInterface() {} |
| 92 | }; |
| 93 | |
Brian Salomon | 48d1b4c | 2017-04-08 07:38:53 -0400 | [diff] [blame] | 94 | static sk_sp<GrPipeline> construct_dummy_pipeline(GrRenderTargetContext* dc) { |
| 95 | return sk_sp<GrPipeline>(new GrPipeline(dc->accessRenderTarget(), SkBlendMode::kSrcOver)); |
csmartdalton | 0d28e57 | 2016-07-06 09:59:43 -0700 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | void assert_equal(skiatest::Reporter* reporter, const SamplePattern& pattern, |
| 99 | const GrGpu::MultisampleSpecs& specs, bool flipY) { |
| 100 | GrAlwaysAssert(specs.fSampleLocations); |
| 101 | if ((int)pattern.size() != specs.fEffectiveSampleCnt) { |
csmartdalton | c633abb | 2016-11-01 08:55:55 -0700 | [diff] [blame] | 102 | REPORT_FAILURE(reporter, "", SkString("Sample pattern has wrong number of samples.")); |
csmartdalton | 0d28e57 | 2016-07-06 09:59:43 -0700 | [diff] [blame] | 103 | return; |
| 104 | } |
| 105 | for (int i = 0; i < specs.fEffectiveSampleCnt; ++i) { |
| 106 | SkPoint expectedLocation = specs.fSampleLocations[i]; |
| 107 | if (flipY) { |
| 108 | expectedLocation.fY = 1 - expectedLocation.fY; |
| 109 | } |
| 110 | if (pattern[i] != expectedLocation) { |
csmartdalton | c633abb | 2016-11-01 08:55:55 -0700 | [diff] [blame] | 111 | REPORT_FAILURE(reporter, "", SkString("Sample pattern has wrong sample location.")); |
csmartdalton | 0d28e57 | 2016-07-06 09:59:43 -0700 | [diff] [blame] | 112 | return; |
| 113 | } |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | void test_sampleLocations(skiatest::Reporter* reporter, TestSampleLocationsInterface* testInterface, |
| 118 | GrContext* ctx) { |
| 119 | SkRandom rand; |
csmartdalton | c633abb | 2016-11-01 08:55:55 -0700 | [diff] [blame] | 120 | sk_sp<GrRenderTargetContext> bottomUps[numTestPatterns]; |
| 121 | sk_sp<GrRenderTargetContext> topDowns[numTestPatterns]; |
csmartdalton | 0d28e57 | 2016-07-06 09:59:43 -0700 | [diff] [blame] | 122 | for (int i = 0; i < numTestPatterns; ++i) { |
| 123 | int numSamples = (int)kTestPatterns[i].size(); |
| 124 | GrAlwaysAssert(numSamples > 1 && SkIsPow2(numSamples)); |
Robert Phillips | 9342921 | 2017-04-11 12:23:17 +0000 | [diff] [blame] | 125 | bottomUps[i] = ctx->makeRenderTargetContextWithFallback( |
csmartdalton | c633abb | 2016-11-01 08:55:55 -0700 | [diff] [blame] | 126 | SkBackingFit::kExact, 100, 100, kRGBA_8888_GrPixelConfig, nullptr, |
| 127 | rand.nextRangeU(1 + numSamples / 2, numSamples), |
| 128 | kBottomLeft_GrSurfaceOrigin); |
Robert Phillips | 9342921 | 2017-04-11 12:23:17 +0000 | [diff] [blame] | 129 | topDowns[i] = ctx->makeRenderTargetContextWithFallback( |
csmartdalton | c633abb | 2016-11-01 08:55:55 -0700 | [diff] [blame] | 130 | SkBackingFit::kExact, 100, 100, kRGBA_8888_GrPixelConfig, nullptr, |
| 131 | rand.nextRangeU(1 + numSamples / 2, numSamples), |
| 132 | kTopLeft_GrSurfaceOrigin); |
csmartdalton | 0d28e57 | 2016-07-06 09:59:43 -0700 | [diff] [blame] | 133 | } |
| 134 | |
| 135 | // Ensure all sample locations get queried and/or cached properly. |
csmartdalton | 0d28e57 | 2016-07-06 09:59:43 -0700 | [diff] [blame] | 136 | for (int repeat = 0; repeat < 2; ++repeat) { |
| 137 | for (int i = 0; i < numTestPatterns; ++i) { |
| 138 | testInterface->overrideSamplePattern(kTestPatterns[i]); |
csmartdalton | c633abb | 2016-11-01 08:55:55 -0700 | [diff] [blame] | 139 | for (GrRenderTargetContext* dc : {bottomUps[i].get(), topDowns[i].get()}) { |
Brian Salomon | 48d1b4c | 2017-04-08 07:38:53 -0400 | [diff] [blame] | 140 | sk_sp<GrPipeline> dummyPipeline = construct_dummy_pipeline(dc); |
csmartdalton | c633abb | 2016-11-01 08:55:55 -0700 | [diff] [blame] | 141 | GrRenderTarget* rt = dc->accessRenderTarget(); |
| 142 | assert_equal(reporter, kTestPatterns[i], |
Brian Salomon | 48d1b4c | 2017-04-08 07:38:53 -0400 | [diff] [blame] | 143 | rt->renderTargetPriv().getMultisampleSpecs(*dummyPipeline), |
csmartdalton | c633abb | 2016-11-01 08:55:55 -0700 | [diff] [blame] | 144 | kBottomLeft_GrSurfaceOrigin == rt->origin()); |
csmartdalton | c633abb | 2016-11-01 08:55:55 -0700 | [diff] [blame] | 145 | } |
csmartdalton | 0d28e57 | 2016-07-06 09:59:43 -0700 | [diff] [blame] | 146 | } |
| 147 | } |
csmartdalton | c633abb | 2016-11-01 08:55:55 -0700 | [diff] [blame] | 148 | |
csmartdalton | 0d28e57 | 2016-07-06 09:59:43 -0700 | [diff] [blame] | 149 | } |
| 150 | |
| 151 | //////////////////////////////////////////////////////////////////////////////////////////////////// |
| 152 | |
| 153 | class GLTestSampleLocationsInterface : public TestSampleLocationsInterface, public GrGLInterface { |
| 154 | public: |
| 155 | GLTestSampleLocationsInterface() : fTestContext(sk_gpu_test::CreateDebugGLTestContext()) { |
| 156 | fStandard = fTestContext->gl()->fStandard; |
| 157 | fExtensions = fTestContext->gl()->fExtensions; |
| 158 | fFunctions = fTestContext->gl()->fFunctions; |
| 159 | |
| 160 | fFunctions.fGetIntegerv = [&](GrGLenum pname, GrGLint* params) { |
| 161 | GrAlwaysAssert(GR_GL_EFFECTIVE_RASTER_SAMPLES != pname); |
| 162 | if (GR_GL_SAMPLES == pname) { |
| 163 | GrAlwaysAssert(!fSamplePattern.empty()); |
| 164 | *params = (int)fSamplePattern.size(); |
| 165 | } else { |
| 166 | fTestContext->gl()->fFunctions.fGetIntegerv(pname, params); |
| 167 | } |
| 168 | }; |
| 169 | |
| 170 | fFunctions.fGetMultisamplefv = [&](GrGLenum pname, GrGLuint index, GrGLfloat* val) { |
| 171 | GrAlwaysAssert(GR_GL_SAMPLE_POSITION == pname); |
| 172 | val[0] = fSamplePattern[index].fX; |
| 173 | val[1] = fSamplePattern[index].fY; |
| 174 | }; |
| 175 | } |
| 176 | |
| 177 | operator GrBackendContext() { |
| 178 | return reinterpret_cast<GrBackendContext>(static_cast<GrGLInterface*>(this)); |
| 179 | } |
| 180 | |
| 181 | void overrideSamplePattern(const SamplePattern& newPattern) override { |
| 182 | fSamplePattern = newPattern; |
| 183 | } |
| 184 | |
| 185 | private: |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 186 | std::unique_ptr<sk_gpu_test::GLTestContext> fTestContext; |
csmartdalton | 0d28e57 | 2016-07-06 09:59:43 -0700 | [diff] [blame] | 187 | SamplePattern fSamplePattern; |
| 188 | }; |
| 189 | |
| 190 | DEF_GPUTEST(GLSampleLocations, reporter, /*factory*/) { |
| 191 | GLTestSampleLocationsInterface testInterface; |
Hal Canary | 342b7ac | 2016-11-04 11:49:42 -0400 | [diff] [blame] | 192 | sk_sp<GrContext> ctx(GrContext::Create(kOpenGL_GrBackend, testInterface)); |
| 193 | test_sampleLocations(reporter, &testInterface, ctx.get()); |
csmartdalton | 0d28e57 | 2016-07-06 09:59:43 -0700 | [diff] [blame] | 194 | } |
| 195 | |
| 196 | #endif |