blob: edbd0b283161dd4d476d10d1ea38676ea977c461 [file] [log] [blame]
bsalomon@google.coma04e8e82012-08-27 12:53:13 +00001/*
2 * Copyright 2012 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 "GrConfigConversionEffect.h"
bsalomon@google.comb1456d72012-11-02 18:23:45 +00009#include "GrContext.h"
joshualittb0a8a372014-09-23 09:50:21 -070010#include "GrTBackendProcessorFactory.h"
bsalomon@google.com68b58c92013-01-17 16:50:08 +000011#include "GrSimpleTextureEffect.h"
joshualittb0a8a372014-09-23 09:50:21 -070012#include "gl/GrGLProcessor.h"
joshualitt30ba4362014-08-21 20:18:45 -070013#include "gl/builders/GrGLProgramBuilder.h"
bsalomon@google.comb1456d72012-11-02 18:23:45 +000014#include "SkMatrix.h"
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000015
joshualittb0a8a372014-09-23 09:50:21 -070016class GrGLConfigConversionEffect : public GrGLFragmentProcessor {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000017public:
joshualittb0a8a372014-09-23 09:50:21 -070018 GrGLConfigConversionEffect(const GrBackendProcessorFactory& factory,
19 const GrProcessor& processor)
bsalomon@google.com77af6802013-10-02 13:04:56 +000020 : INHERITED (factory) {
joshualittb0a8a372014-09-23 09:50:21 -070021 const GrConfigConversionEffect& configConversionEffect =
22 processor.cast<GrConfigConversionEffect>();
joshualitt49586be2014-09-16 08:21:41 -070023 fSwapRedAndBlue = configConversionEffect.swapsRedAndBlue();
24 fPMConversion = configConversionEffect.pmConversion();
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000025 }
26
joshualitt15988992014-10-09 15:04:05 -070027 virtual void emitCode(GrGLFPBuilder* builder,
joshualittb0a8a372014-09-23 09:50:21 -070028 const GrFragmentProcessor&,
29 const GrProcessorKey& key,
bsalomon@google.com22a800a2012-10-26 19:16:46 +000030 const char* outputColor,
31 const char* inputColor,
bsalomon@google.com77af6802013-10-02 13:04:56 +000032 const TransformedCoordsArray& coords,
bsalomon@google.com22a800a2012-10-26 19:16:46 +000033 const TextureSamplerArray& samplers) SK_OVERRIDE {
changjun.yangcecc91c2014-08-19 18:24:30 -070034 // Using highp for GLES here in order to avoid some precision issues on specific GPUs.
35 GrGLShaderVar tmpVar("tmpColor", kVec4f_GrSLType, 0, GrGLShaderVar::kHigh_Precision);
36 SkString tmpDecl;
37 tmpVar.appendDecl(builder->ctxInfo(), &tmpDecl);
changjun.yangcecc91c2014-08-19 18:24:30 -070038
joshualitt15988992014-10-09 15:04:05 -070039 GrGLFPFragmentBuilder* fsBuilder = builder->getFragmentShaderBuilder();
joshualitt30ba4362014-08-21 20:18:45 -070040
41 fsBuilder->codeAppendf("%s;", tmpDecl.c_str());
42
43 fsBuilder->codeAppendf("%s = ", tmpVar.c_str());
joshualitt23e280d2014-09-18 12:26:38 -070044 fsBuilder->appendTextureLookup(samplers[0], coords[0].c_str(), coords[0].getType());
joshualitt30ba4362014-08-21 20:18:45 -070045 fsBuilder->codeAppend(";");
changjun.yangcecc91c2014-08-19 18:24:30 -070046
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000047 if (GrConfigConversionEffect::kNone_PMConversion == fPMConversion) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000048 SkASSERT(fSwapRedAndBlue);
joshualitt30ba4362014-08-21 20:18:45 -070049 fsBuilder->codeAppendf("%s = %s.bgra;", outputColor, tmpVar.c_str());
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000050 } else {
51 const char* swiz = fSwapRedAndBlue ? "bgr" : "rgb";
52 switch (fPMConversion) {
53 case GrConfigConversionEffect::kMulByAlpha_RoundUp_PMConversion:
joshualitt30ba4362014-08-21 20:18:45 -070054 fsBuilder->codeAppendf(
changjun.yangcecc91c2014-08-19 18:24:30 -070055 "%s = vec4(ceil(%s.%s * %s.a * 255.0) / 255.0, %s.a);",
56 tmpVar.c_str(), tmpVar.c_str(), swiz, tmpVar.c_str(), tmpVar.c_str());
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000057 break;
58 case GrConfigConversionEffect::kMulByAlpha_RoundDown_PMConversion:
commit-bot@chromium.orgb4e200e2013-06-19 11:41:02 +000059 // Add a compensation(0.001) here to avoid the side effect of the floor operation.
60 // In Intel GPUs, the integer value converted from floor(%s.r * 255.0) / 255.0
61 // is less than the integer value converted from %s.r by 1 when the %s.r is
62 // converted from the integer value 2^n, such as 1, 2, 4, 8, etc.
joshualitt30ba4362014-08-21 20:18:45 -070063 fsBuilder->codeAppendf(
changjun.yangcecc91c2014-08-19 18:24:30 -070064 "%s = vec4(floor(%s.%s * %s.a * 255.0 + 0.001) / 255.0, %s.a);",
65 tmpVar.c_str(), tmpVar.c_str(), swiz, tmpVar.c_str(), tmpVar.c_str());
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000066 break;
67 case GrConfigConversionEffect::kDivByAlpha_RoundUp_PMConversion:
joshualitt30ba4362014-08-21 20:18:45 -070068 fsBuilder->codeAppendf(
changjun.yangcecc91c2014-08-19 18:24:30 -070069 "%s = %s.a <= 0.0 ? vec4(0,0,0,0) : vec4(ceil(%s.%s / %s.a * 255.0) / 255.0, %s.a);",
70 tmpVar.c_str(), tmpVar.c_str(), tmpVar.c_str(), swiz, tmpVar.c_str(), tmpVar.c_str());
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000071 break;
72 case GrConfigConversionEffect::kDivByAlpha_RoundDown_PMConversion:
joshualitt30ba4362014-08-21 20:18:45 -070073 fsBuilder->codeAppendf(
changjun.yangcecc91c2014-08-19 18:24:30 -070074 "%s = %s.a <= 0.0 ? vec4(0,0,0,0) : vec4(floor(%s.%s / %s.a * 255.0) / 255.0, %s.a);",
75 tmpVar.c_str(), tmpVar.c_str(), tmpVar.c_str(), swiz, tmpVar.c_str(), tmpVar.c_str());
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000076 break;
robertphillips@google.com2af1b182012-08-28 11:23:09 +000077 default:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +000078 SkFAIL("Unknown conversion op.");
robertphillips@google.com2af1b182012-08-28 11:23:09 +000079 break;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000080 }
joshualitt30ba4362014-08-21 20:18:45 -070081 fsBuilder->codeAppendf("%s = %s;", outputColor, tmpVar.c_str());
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000082 }
bsalomon@google.comf910d3b2013-03-07 17:06:57 +000083 SkString modulate;
egdaniel089f8de2014-10-09 10:34:58 -070084 GrGLSLMulVarBy4f(&modulate, outputColor, inputColor);
joshualitt30ba4362014-08-21 20:18:45 -070085 fsBuilder->codeAppend(modulate.c_str());
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000086 }
87
joshualittb0a8a372014-09-23 09:50:21 -070088 static inline void GenKey(const GrProcessor& processor, const GrGLCaps&,
89 GrProcessorKeyBuilder* b) {
90 const GrConfigConversionEffect& conv = processor.cast<GrConfigConversionEffect>();
bsalomon63e99f72014-07-21 08:03:14 -070091 uint32_t key = (conv.swapsRedAndBlue() ? 0 : 1) | (conv.pmConversion() << 1);
92 b->add32(key);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000093 }
94
95private:
96 bool fSwapRedAndBlue;
97 GrConfigConversionEffect::PMConversion fPMConversion;
98
joshualittb0a8a372014-09-23 09:50:21 -070099 typedef GrGLFragmentProcessor INHERITED;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000100
101};
102
103///////////////////////////////////////////////////////////////////////////////
104
105GrConfigConversionEffect::GrConfigConversionEffect(GrTexture* texture,
106 bool swapRedAndBlue,
bsalomon@google.comb1456d72012-11-02 18:23:45 +0000107 PMConversion pmConversion,
108 const SkMatrix& matrix)
109 : GrSingleTextureEffect(texture, matrix)
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000110 , fSwapRedAndBlue(swapRedAndBlue)
111 , fPMConversion(pmConversion) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000112 SkASSERT(kRGBA_8888_GrPixelConfig == texture->config() ||
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000113 kBGRA_8888_GrPixelConfig == texture->config());
114 // Why did we pollute our texture cache instead of using a GrSingleTextureEffect?
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000115 SkASSERT(swapRedAndBlue || kNone_PMConversion != pmConversion);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000116}
117
joshualittb0a8a372014-09-23 09:50:21 -0700118const GrBackendFragmentProcessorFactory& GrConfigConversionEffect::getFactory() const {
119 return GrTBackendFragmentProcessorFactory<GrConfigConversionEffect>::getInstance();
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000120}
121
bsalomon0e08fc12014-10-15 08:19:04 -0700122bool GrConfigConversionEffect::onIsEqual(const GrFragmentProcessor& s) const {
joshualitt49586be2014-09-16 08:21:41 -0700123 const GrConfigConversionEffect& other = s.cast<GrConfigConversionEffect>();
bsalomon420d7e92014-10-16 09:18:09 -0700124 return other.fSwapRedAndBlue == fSwapRedAndBlue &&
bsalomon@google.com68b58c92013-01-17 16:50:08 +0000125 other.fPMConversion == fPMConversion;
126}
127
egdaniel1a8ecdf2014-10-03 06:24:12 -0700128void GrConfigConversionEffect::onComputeInvariantOutput(InvariantOutput* inout) const {
129 this->updateInvariantOutputForModulation(inout);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000130}
131
132///////////////////////////////////////////////////////////////////////////////
133
joshualittb0a8a372014-09-23 09:50:21 -0700134GR_DEFINE_FRAGMENT_PROCESSOR_TEST(GrConfigConversionEffect);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000135
joshualittb0a8a372014-09-23 09:50:21 -0700136GrFragmentProcessor* GrConfigConversionEffect::TestCreate(SkRandom* random,
137 GrContext*,
138 const GrDrawTargetCaps&,
139 GrTexture* textures[]) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000140 PMConversion pmConv = static_cast<PMConversion>(random->nextULessThan(kPMConversionCnt));
141 bool swapRB;
142 if (kNone_PMConversion == pmConv) {
143 swapRB = true;
144 } else {
145 swapRB = random->nextBool();
146 }
bsalomon55fad7a2014-07-08 07:34:20 -0700147 return SkNEW_ARGS(GrConfigConversionEffect,
joshualittb0a8a372014-09-23 09:50:21 -0700148 (textures[GrProcessorUnitTest::kSkiaPMTextureIdx],
bsalomon@google.com6340a412013-01-22 19:55:59 +0000149 swapRB,
150 pmConv,
joshualittb0a8a372014-09-23 09:50:21 -0700151 GrProcessorUnitTest::TestMatrix(random)));
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000152}
153
154///////////////////////////////////////////////////////////////////////////////
155void GrConfigConversionEffect::TestForPreservingPMConversions(GrContext* context,
156 PMConversion* pmToUPMRule,
157 PMConversion* upmToPMRule) {
158 *pmToUPMRule = kNone_PMConversion;
159 *upmToPMRule = kNone_PMConversion;
160 SkAutoTMalloc<uint32_t> data(256 * 256 * 3);
161 uint32_t* srcData = data.get();
162 uint32_t* firstRead = data.get() + 256 * 256;
163 uint32_t* secondRead = data.get() + 2 * 256 * 256;
164
165 // Fill with every possible premultiplied A, color channel value. There will be 256-y duplicate
166 // values in row y. We set r,g, and b to the same value since they are handled identically.
167 for (int y = 0; y < 256; ++y) {
168 for (int x = 0; x < 256; ++x) {
169 uint8_t* color = reinterpret_cast<uint8_t*>(&srcData[256*y + x]);
170 color[3] = y;
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000171 color[2] = SkTMin(x, y);
172 color[1] = SkTMin(x, y);
173 color[0] = SkTMin(x, y);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000174 }
175 }
176
bsalomonf2703d82014-10-28 14:33:06 -0700177 GrSurfaceDesc desc;
178 desc.fFlags = kRenderTarget_GrSurfaceFlag |
179 kNoStencil_GrSurfaceFlag;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000180 desc.fWidth = 256;
181 desc.fHeight = 256;
182 desc.fConfig = kRGBA_8888_GrPixelConfig;
183
184 SkAutoTUnref<GrTexture> readTex(context->createUncachedTexture(desc, NULL, 0));
185 if (!readTex.get()) {
186 return;
187 }
188 SkAutoTUnref<GrTexture> tempTex(context->createUncachedTexture(desc, NULL, 0));
189 if (!tempTex.get()) {
190 return;
191 }
bsalomonf2703d82014-10-28 14:33:06 -0700192 desc.fFlags = kNone_GrSurfaceFlags;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000193 SkAutoTUnref<GrTexture> dataTex(context->createUncachedTexture(desc, data, 0));
194 if (!dataTex.get()) {
195 return;
196 }
197
198 static const PMConversion kConversionRules[][2] = {
199 {kDivByAlpha_RoundDown_PMConversion, kMulByAlpha_RoundUp_PMConversion},
200 {kDivByAlpha_RoundUp_PMConversion, kMulByAlpha_RoundDown_PMConversion},
201 };
202
203 GrContext::AutoWideOpenIdentityDraw awoid(context, NULL);
204
205 bool failed = true;
206
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000207 for (size_t i = 0; i < SK_ARRAY_COUNT(kConversionRules) && failed; ++i) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000208 *pmToUPMRule = kConversionRules[i][0];
209 *upmToPMRule = kConversionRules[i][1];
210
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000211 static const SkRect kDstRect = SkRect::MakeWH(SkIntToScalar(256), SkIntToScalar(256));
212 static const SkRect kSrcRect = SkRect::MakeWH(SK_Scalar1, SK_Scalar1);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000213 // We do a PM->UPM draw from dataTex to readTex and read the data. Then we do a UPM->PM draw
214 // from readTex to tempTex followed by a PM->UPM draw to readTex and finally read the data.
215 // We then verify that two reads produced the same values.
216
joshualittb0a8a372014-09-23 09:50:21 -0700217 SkAutoTUnref<GrFragmentProcessor> pmToUPM1(
218 SkNEW_ARGS(GrConfigConversionEffect,
219 (dataTex, false, *pmToUPMRule, SkMatrix::I())));
220 SkAutoTUnref<GrFragmentProcessor> upmToPM(
221 SkNEW_ARGS(GrConfigConversionEffect,
222 (readTex, false, *upmToPMRule, SkMatrix::I())));
223 SkAutoTUnref<GrFragmentProcessor> pmToUPM2(
224 SkNEW_ARGS(GrConfigConversionEffect,
225 (tempTex, false, *pmToUPMRule, SkMatrix::I())));
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000226
227 context->setRenderTarget(readTex->asRenderTarget());
commit-bot@chromium.org42dacab2013-07-13 17:24:24 +0000228 GrPaint paint1;
joshualittb0a8a372014-09-23 09:50:21 -0700229 paint1.addColorProcessor(pmToUPM1);
commit-bot@chromium.org42dacab2013-07-13 17:24:24 +0000230 context->drawRectToRect(paint1, kDstRect, kSrcRect);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000231
232 readTex->readPixels(0, 0, 256, 256, kRGBA_8888_GrPixelConfig, firstRead);
233
234 context->setRenderTarget(tempTex->asRenderTarget());
commit-bot@chromium.org42dacab2013-07-13 17:24:24 +0000235 GrPaint paint2;
joshualittb0a8a372014-09-23 09:50:21 -0700236 paint2.addColorProcessor(upmToPM);
commit-bot@chromium.org42dacab2013-07-13 17:24:24 +0000237 context->drawRectToRect(paint2, kDstRect, kSrcRect);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000238 context->setRenderTarget(readTex->asRenderTarget());
commit-bot@chromium.org42dacab2013-07-13 17:24:24 +0000239
240 GrPaint paint3;
joshualittb0a8a372014-09-23 09:50:21 -0700241 paint3.addColorProcessor(pmToUPM2);
commit-bot@chromium.org42dacab2013-07-13 17:24:24 +0000242 context->drawRectToRect(paint3, kDstRect, kSrcRect);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000243
244 readTex->readPixels(0, 0, 256, 256, kRGBA_8888_GrPixelConfig, secondRead);
245
246 failed = false;
247 for (int y = 0; y < 256 && !failed; ++y) {
248 for (int x = 0; x <= y; ++x) {
249 if (firstRead[256 * y + x] != secondRead[256 * y + x]) {
250 failed = true;
251 break;
252 }
253 }
254 }
255 }
256 if (failed) {
257 *pmToUPMRule = kNone_PMConversion;
258 *upmToPMRule = kNone_PMConversion;
259 }
260}
261
joshualittb0a8a372014-09-23 09:50:21 -0700262const GrFragmentProcessor* GrConfigConversionEffect::Create(GrTexture* texture,
bsalomon83d081a2014-07-08 09:56:10 -0700263 bool swapRedAndBlue,
264 PMConversion pmConversion,
265 const SkMatrix& matrix) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000266 if (!swapRedAndBlue && kNone_PMConversion == pmConversion) {
bsalomon@google.comadc65362013-01-28 14:26:09 +0000267 // If we returned a GrConfigConversionEffect that was equivalent to a GrSimpleTextureEffect
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000268 // then we may pollute our texture cache with redundant shaders. So in the case that no
bsalomon@google.comadc65362013-01-28 14:26:09 +0000269 // conversions were requested we instead return a GrSimpleTextureEffect.
270 return GrSimpleTextureEffect::Create(texture, matrix);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000271 } else {
272 if (kRGBA_8888_GrPixelConfig != texture->config() &&
273 kBGRA_8888_GrPixelConfig != texture->config() &&
274 kNone_PMConversion != pmConversion) {
275 // The PM conversions assume colors are 0..255
bsalomon@google.comadc65362013-01-28 14:26:09 +0000276 return NULL;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000277 }
bsalomon55fad7a2014-07-08 07:34:20 -0700278 return SkNEW_ARGS(GrConfigConversionEffect, (texture,
279 swapRedAndBlue,
280 pmConversion,
281 matrix));
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000282 }
283}