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