bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 1 | /* |
Ethan Nicholas | 130fb3f | 2018-02-01 12:14:34 -0500 | [diff] [blame] | 2 | * Copyright 2018 Google Inc. |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 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 | |
Ethan Nicholas | 130fb3f | 2018-02-01 12:14:34 -0500 | [diff] [blame] | 8 | /************************************************************************************************** |
| 9 | *** This file was autogenerated from GrConfigConversionEffect.fp; do not modify. |
| 10 | **************************************************************************************************/ |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 11 | #ifndef GrConfigConversionEffect_DEFINED |
| 12 | #define GrConfigConversionEffect_DEFINED |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 13 | #include "include/core/SkTypes.h" |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 14 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 15 | #include "include/gpu/GrContext.h" |
| 16 | #include "src/gpu/GrClip.h" |
| 17 | #include "src/gpu/GrContextPriv.h" |
| 18 | #include "src/gpu/GrProxyProvider.h" |
| 19 | #include "src/gpu/GrRenderTargetContext.h" |
| 20 | |
| 21 | #include "src/gpu/GrCoordTransform.h" |
| 22 | #include "src/gpu/GrFragmentProcessor.h" |
Brian Osman | ee80532 | 2017-04-05 10:09:00 -0400 | [diff] [blame] | 23 | class GrConfigConversionEffect : public GrFragmentProcessor { |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 24 | public: |
Ethan Nicholas | 839872c | 2017-10-05 12:36:59 -0400 | [diff] [blame] | 25 | static bool TestForPreservingPMConversions(GrContext* context) { |
Mike Klein | d6ab77a | 2019-03-21 08:18:24 -0500 | [diff] [blame] | 26 | static constexpr int kSize = 256; |
| 27 | static constexpr GrPixelConfig kConfig = kRGBA_8888_GrPixelConfig; |
Brian Salomon | d628747 | 2019-06-24 15:50:07 -0400 | [diff] [blame] | 28 | static constexpr GrColorType kColorType = GrColorType::kRGBA_8888; |
| 29 | const GrBackendFormat format = context->priv().caps()->getBackendFormatFromGrColorType( |
| 30 | kColorType, GrSRGBEncoded::kNo); |
Ethan Nicholas | 839872c | 2017-10-05 12:36:59 -0400 | [diff] [blame] | 31 | SkAutoTMalloc<uint32_t> data(kSize * kSize * 3); |
Mike Klein | d6ab77a | 2019-03-21 08:18:24 -0500 | [diff] [blame] | 32 | uint32_t* srcData = data.get(); |
| 33 | uint32_t* firstRead = data.get() + kSize * kSize; |
| 34 | uint32_t* secondRead = data.get() + 2 * kSize * kSize; |
Robert Phillips | 757914d | 2017-01-25 15:48:30 -0500 | [diff] [blame] | 35 | |
Ethan Nicholas | 839872c | 2017-10-05 12:36:59 -0400 | [diff] [blame] | 36 | // Fill with every possible premultiplied A, color channel value. There will be 256-y |
| 37 | // duplicate values in row y. We set r, g, and b to the same value since they are handled |
| 38 | // identically. |
| 39 | for (int y = 0; y < kSize; ++y) { |
| 40 | for (int x = 0; x < kSize; ++x) { |
| 41 | uint8_t* color = reinterpret_cast<uint8_t*>(&srcData[kSize * y + x]); |
Mike Klein | d6ab77a | 2019-03-21 08:18:24 -0500 | [diff] [blame] | 42 | color[3] = y; |
| 43 | color[2] = SkTMin(x, y); |
| 44 | color[1] = SkTMin(x, y); |
| 45 | color[0] = SkTMin(x, y); |
Ethan Nicholas | 839872c | 2017-10-05 12:36:59 -0400 | [diff] [blame] | 46 | } |
| 47 | } |
Brian Salomon | 7b9b326 | 2018-04-27 17:38:06 -0400 | [diff] [blame] | 48 | memset(firstRead, 0, kSize * kSize * sizeof(uint32_t)); |
| 49 | memset(secondRead, 0, kSize * kSize * sizeof(uint32_t)); |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 50 | |
Ethan Nicholas | 839872c | 2017-10-05 12:36:59 -0400 | [diff] [blame] | 51 | const SkImageInfo ii = |
| 52 | SkImageInfo::Make(kSize, kSize, kRGBA_8888_SkColorType, kPremul_SkAlphaType); |
| 53 | |
Robert Phillips | 9da87e0 | 2019-02-04 13:26:26 -0500 | [diff] [blame] | 54 | sk_sp<GrRenderTargetContext> readRTC(context->priv().makeDeferredRenderTargetContext( |
Brian Salomon | d628747 | 2019-06-24 15:50:07 -0400 | [diff] [blame] | 55 | format, SkBackingFit::kExact, kSize, kSize, kConfig, kColorType, nullptr)); |
Robert Phillips | 9da87e0 | 2019-02-04 13:26:26 -0500 | [diff] [blame] | 56 | sk_sp<GrRenderTargetContext> tempRTC(context->priv().makeDeferredRenderTargetContext( |
Brian Salomon | d628747 | 2019-06-24 15:50:07 -0400 | [diff] [blame] | 57 | format, SkBackingFit::kExact, kSize, kSize, kConfig, kColorType, nullptr)); |
Ethan Nicholas | 839872c | 2017-10-05 12:36:59 -0400 | [diff] [blame] | 58 | if (!readRTC || !readRTC->asTextureProxy() || !tempRTC) { |
| 59 | return false; |
| 60 | } |
Greg Daniel | f44cb48 | 2018-02-27 14:26:32 -0500 | [diff] [blame] | 61 | // Adding discard to appease vulkan validation warning about loading uninitialized data on |
| 62 | // draw |
| 63 | readRTC->discard(); |
| 64 | |
Robert Phillips | 9da87e0 | 2019-02-04 13:26:26 -0500 | [diff] [blame] | 65 | GrProxyProvider* proxyProvider = context->priv().proxyProvider(); |
Robert Phillips | 579f094 | 2018-01-08 14:53:35 -0500 | [diff] [blame] | 66 | |
Greg Daniel | 6e9a4f6 | 2018-03-15 17:00:06 -0400 | [diff] [blame] | 67 | SkPixmap pixmap(ii, srcData, 4 * kSize); |
| 68 | |
| 69 | // This function is only ever called if we are in a GrContext that has a GrGpu since we are |
| 70 | // calling read pixels here. Thus the pixel data will be uploaded immediately and we don't |
| 71 | // need to keep the pixel data alive in the proxy. Therefore the ReleaseProc is nullptr. |
| 72 | sk_sp<SkImage> image = SkImage::MakeFromRaster(pixmap, nullptr, nullptr); |
| 73 | |
| 74 | sk_sp<GrTextureProxy> dataProxy = proxyProvider->createTextureProxy( |
| 75 | std::move(image), kNone_GrSurfaceFlags, 1, SkBudgeted::kYes, SkBackingFit::kExact); |
Ethan Nicholas | 839872c | 2017-10-05 12:36:59 -0400 | [diff] [blame] | 76 | if (!dataProxy) { |
| 77 | return false; |
| 78 | } |
| 79 | |
| 80 | static const SkRect kRect = SkRect::MakeIWH(kSize, kSize); |
| 81 | |
| 82 | // We do a PM->UPM draw from dataTex to readTex and read the data. Then we do a UPM->PM draw |
| 83 | // from readTex to tempTex followed by a PM->UPM draw to readTex and finally read the data. |
| 84 | // We then verify that two reads produced the same values. |
| 85 | |
Mike Klein | d6ab77a | 2019-03-21 08:18:24 -0500 | [diff] [blame] | 86 | GrPaint paint1; |
| 87 | GrPaint paint2; |
| 88 | GrPaint paint3; |
Ethan Nicholas | 839872c | 2017-10-05 12:36:59 -0400 | [diff] [blame] | 89 | std::unique_ptr<GrFragmentProcessor> pmToUPM( |
Ethan Nicholas | aae47c8 | 2017-11-10 15:34:03 -0500 | [diff] [blame] | 90 | new GrConfigConversionEffect(PMConversion::kToUnpremul)); |
Ethan Nicholas | 839872c | 2017-10-05 12:36:59 -0400 | [diff] [blame] | 91 | std::unique_ptr<GrFragmentProcessor> upmToPM( |
Ethan Nicholas | aae47c8 | 2017-11-10 15:34:03 -0500 | [diff] [blame] | 92 | new GrConfigConversionEffect(PMConversion::kToPremul)); |
Ethan Nicholas | 839872c | 2017-10-05 12:36:59 -0400 | [diff] [blame] | 93 | |
Brian Osman | 2240be9 | 2017-10-18 13:15:13 -0400 | [diff] [blame] | 94 | paint1.addColorTextureProcessor(dataProxy, SkMatrix::I()); |
Ethan Nicholas | 839872c | 2017-10-05 12:36:59 -0400 | [diff] [blame] | 95 | paint1.addColorFragmentProcessor(pmToUPM->clone()); |
| 96 | paint1.setPorterDuffXPFactory(SkBlendMode::kSrc); |
| 97 | |
Mike Klein | d6ab77a | 2019-03-21 08:18:24 -0500 | [diff] [blame] | 98 | readRTC->fillRectToRect(GrNoClip(), std::move(paint1), GrAA::kNo, SkMatrix::I(), kRect, |
| 99 | kRect); |
Brian Salomon | 1d43530 | 2019-07-01 13:05:28 -0400 | [diff] [blame] | 100 | if (!readRTC->readPixels(ii, firstRead, 0, {0, 0})) { |
Ethan Nicholas | 839872c | 2017-10-05 12:36:59 -0400 | [diff] [blame] | 101 | return false; |
| 102 | } |
| 103 | |
Greg Daniel | f44cb48 | 2018-02-27 14:26:32 -0500 | [diff] [blame] | 104 | // Adding discard to appease vulkan validation warning about loading uninitialized data on |
| 105 | // draw |
| 106 | tempRTC->discard(); |
| 107 | |
Brian Osman | 2240be9 | 2017-10-18 13:15:13 -0400 | [diff] [blame] | 108 | paint2.addColorTextureProcessor(readRTC->asTextureProxyRef(), SkMatrix::I()); |
Ethan Nicholas | 839872c | 2017-10-05 12:36:59 -0400 | [diff] [blame] | 109 | paint2.addColorFragmentProcessor(std::move(upmToPM)); |
| 110 | paint2.setPorterDuffXPFactory(SkBlendMode::kSrc); |
| 111 | |
Mike Klein | d6ab77a | 2019-03-21 08:18:24 -0500 | [diff] [blame] | 112 | tempRTC->fillRectToRect(GrNoClip(), std::move(paint2), GrAA::kNo, SkMatrix::I(), kRect, |
| 113 | kRect); |
Ethan Nicholas | 839872c | 2017-10-05 12:36:59 -0400 | [diff] [blame] | 114 | |
Brian Osman | 2240be9 | 2017-10-18 13:15:13 -0400 | [diff] [blame] | 115 | paint3.addColorTextureProcessor(tempRTC->asTextureProxyRef(), SkMatrix::I()); |
Ethan Nicholas | 839872c | 2017-10-05 12:36:59 -0400 | [diff] [blame] | 116 | paint3.addColorFragmentProcessor(std::move(pmToUPM)); |
| 117 | paint3.setPorterDuffXPFactory(SkBlendMode::kSrc); |
| 118 | |
Mike Klein | d6ab77a | 2019-03-21 08:18:24 -0500 | [diff] [blame] | 119 | readRTC->fillRectToRect(GrNoClip(), std::move(paint3), GrAA::kNo, SkMatrix::I(), kRect, |
| 120 | kRect); |
Ethan Nicholas | 839872c | 2017-10-05 12:36:59 -0400 | [diff] [blame] | 121 | |
Brian Salomon | 1d43530 | 2019-07-01 13:05:28 -0400 | [diff] [blame] | 122 | if (!readRTC->readPixels(ii, secondRead, 0, {0, 0})) { |
Ethan Nicholas | 839872c | 2017-10-05 12:36:59 -0400 | [diff] [blame] | 123 | return false; |
| 124 | } |
| 125 | |
| 126 | for (int y = 0; y < kSize; ++y) { |
| 127 | for (int x = 0; x <= y; ++x) { |
| 128 | if (firstRead[kSize * y + x] != secondRead[kSize * y + x]) { |
| 129 | return false; |
| 130 | } |
| 131 | } |
| 132 | } |
| 133 | |
| 134 | return true; |
| 135 | } |
Ethan Nicholas | 839872c | 2017-10-05 12:36:59 -0400 | [diff] [blame] | 136 | |
| 137 | static std::unique_ptr<GrFragmentProcessor> Make(std::unique_ptr<GrFragmentProcessor> fp, |
| 138 | PMConversion pmConversion) { |
| 139 | if (!fp) { |
| 140 | return nullptr; |
| 141 | } |
| 142 | std::unique_ptr<GrFragmentProcessor> ccFP(new GrConfigConversionEffect(pmConversion)); |
| 143 | std::unique_ptr<GrFragmentProcessor> fpPipeline[] = {std::move(fp), std::move(ccFP)}; |
| 144 | return GrFragmentProcessor::RunInSeries(fpPipeline, 2); |
| 145 | } |
| 146 | GrConfigConversionEffect(const GrConfigConversionEffect& src); |
Brian Salomon | aff329b | 2017-08-11 09:40:37 -0400 | [diff] [blame] | 147 | std::unique_ptr<GrFragmentProcessor> clone() const override; |
Mike Klein | d6ab77a | 2019-03-21 08:18:24 -0500 | [diff] [blame] | 148 | const char* name() const override { return "ConfigConversionEffect"; } |
Ethan Nicholas | bcd51e8 | 2019-04-09 10:40:41 -0400 | [diff] [blame] | 149 | PMConversion pmConversion; |
Brian Osman | 28804f3 | 2017-04-20 10:24:36 -0400 | [diff] [blame] | 150 | |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 151 | private: |
Ethan Nicholas | aae47c8 | 2017-11-10 15:34:03 -0500 | [diff] [blame] | 152 | GrConfigConversionEffect(PMConversion pmConversion) |
Ethan Nicholas | abff956 | 2017-10-09 10:54:08 -0400 | [diff] [blame] | 153 | : INHERITED(kGrConfigConversionEffect_ClassID, kNone_OptimizationFlags) |
Ethan Nicholas | bcd51e8 | 2019-04-09 10:40:41 -0400 | [diff] [blame] | 154 | , pmConversion(pmConversion) {} |
egdaniel | 57d3b03 | 2015-11-13 11:57:27 -0800 | [diff] [blame] | 155 | GrGLSLFragmentProcessor* onCreateGLSLInstance() const override; |
Brian Salomon | 94efbf5 | 2016-11-29 13:43:05 -0500 | [diff] [blame] | 156 | void onGetGLSLProcessorKey(const GrShaderCaps&, GrProcessorKeyBuilder*) const override; |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 157 | bool onIsEqual(const GrFragmentProcessor&) const override; |
Brian Salomon | 0c26a9d | 2017-07-06 10:09:38 -0400 | [diff] [blame] | 158 | GR_DECLARE_FRAGMENT_PROCESSOR_TEST |
Brian Osman | ee80532 | 2017-04-05 10:09:00 -0400 | [diff] [blame] | 159 | typedef GrFragmentProcessor INHERITED; |
bsalomon@google.com | a04e8e8 | 2012-08-27 12:53:13 +0000 | [diff] [blame] | 160 | }; |
Ethan Nicholas | 839872c | 2017-10-05 12:36:59 -0400 | [diff] [blame] | 161 | #endif |