blob: e00ad53e5729b49339ea33c2855ad3ca02a1932b [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"
bsalomon@google.com2eaaefd2012-10-29 19:51:22 +000010#include "GrTBackendEffectFactory.h"
bsalomon@google.com68b58c92013-01-17 16:50:08 +000011#include "GrSimpleTextureEffect.h"
bsalomon@google.comd698f772012-10-25 13:22:00 +000012#include "gl/GrGLEffect.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
bsalomon@google.com22a800a2012-10-26 19:16:46 +000016class GrGLConfigConversionEffect : public GrGLEffect {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000017public:
bsalomon@google.com396e61f2012-10-25 19:00:29 +000018 GrGLConfigConversionEffect(const GrBackendEffectFactory& factory,
joshualitt49586be2014-09-16 08:21:41 -070019 const GrEffect& effect)
bsalomon@google.com77af6802013-10-02 13:04:56 +000020 : INHERITED (factory) {
joshualitt49586be2014-09-16 08:21:41 -070021 const GrConfigConversionEffect& configConversionEffect = effect.cast<GrConfigConversionEffect>();
22 fSwapRedAndBlue = configConversionEffect.swapsRedAndBlue();
23 fPMConversion = configConversionEffect.pmConversion();
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000024 }
25
joshualitt30ba4362014-08-21 20:18:45 -070026 virtual void emitCode(GrGLProgramBuilder* builder,
joshualitt49586be2014-09-16 08:21:41 -070027 const GrEffect&,
bsalomon63e99f72014-07-21 08:03:14 -070028 const GrEffectKey& key,
bsalomon@google.com22a800a2012-10-26 19:16:46 +000029 const char* outputColor,
30 const char* inputColor,
bsalomon@google.com77af6802013-10-02 13:04:56 +000031 const TransformedCoordsArray& coords,
bsalomon@google.com22a800a2012-10-26 19:16:46 +000032 const TextureSamplerArray& samplers) SK_OVERRIDE {
changjun.yangcecc91c2014-08-19 18:24:30 -070033 // Using highp for GLES here in order to avoid some precision issues on specific GPUs.
34 GrGLShaderVar tmpVar("tmpColor", kVec4f_GrSLType, 0, GrGLShaderVar::kHigh_Precision);
35 SkString tmpDecl;
36 tmpVar.appendDecl(builder->ctxInfo(), &tmpDecl);
changjun.yangcecc91c2014-08-19 18:24:30 -070037
joshualitt30ba4362014-08-21 20:18:45 -070038 GrGLFragmentShaderBuilder* fsBuilder = builder->getFragmentShaderBuilder();
39
40 fsBuilder->codeAppendf("%s;", tmpDecl.c_str());
41
42 fsBuilder->codeAppendf("%s = ", tmpVar.c_str());
43 fsBuilder->appendTextureLookup(samplers[0], coords[0].c_str(), coords[0].type());
44 fsBuilder->codeAppend(";");
changjun.yangcecc91c2014-08-19 18:24:30 -070045
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000046 if (GrConfigConversionEffect::kNone_PMConversion == fPMConversion) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000047 SkASSERT(fSwapRedAndBlue);
joshualitt30ba4362014-08-21 20:18:45 -070048 fsBuilder->codeAppendf("%s = %s.bgra;", outputColor, tmpVar.c_str());
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000049 } else {
50 const char* swiz = fSwapRedAndBlue ? "bgr" : "rgb";
51 switch (fPMConversion) {
52 case GrConfigConversionEffect::kMulByAlpha_RoundUp_PMConversion:
joshualitt30ba4362014-08-21 20:18:45 -070053 fsBuilder->codeAppendf(
changjun.yangcecc91c2014-08-19 18:24:30 -070054 "%s = vec4(ceil(%s.%s * %s.a * 255.0) / 255.0, %s.a);",
55 tmpVar.c_str(), tmpVar.c_str(), swiz, tmpVar.c_str(), tmpVar.c_str());
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000056 break;
57 case GrConfigConversionEffect::kMulByAlpha_RoundDown_PMConversion:
commit-bot@chromium.orgb4e200e2013-06-19 11:41:02 +000058 // Add a compensation(0.001) here to avoid the side effect of the floor operation.
59 // In Intel GPUs, the integer value converted from floor(%s.r * 255.0) / 255.0
60 // is less than the integer value converted from %s.r by 1 when the %s.r is
61 // converted from the integer value 2^n, such as 1, 2, 4, 8, etc.
joshualitt30ba4362014-08-21 20:18:45 -070062 fsBuilder->codeAppendf(
changjun.yangcecc91c2014-08-19 18:24:30 -070063 "%s = vec4(floor(%s.%s * %s.a * 255.0 + 0.001) / 255.0, %s.a);",
64 tmpVar.c_str(), tmpVar.c_str(), swiz, tmpVar.c_str(), tmpVar.c_str());
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000065 break;
66 case GrConfigConversionEffect::kDivByAlpha_RoundUp_PMConversion:
joshualitt30ba4362014-08-21 20:18:45 -070067 fsBuilder->codeAppendf(
changjun.yangcecc91c2014-08-19 18:24:30 -070068 "%s = %s.a <= 0.0 ? vec4(0,0,0,0) : vec4(ceil(%s.%s / %s.a * 255.0) / 255.0, %s.a);",
69 tmpVar.c_str(), tmpVar.c_str(), tmpVar.c_str(), swiz, tmpVar.c_str(), tmpVar.c_str());
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000070 break;
71 case GrConfigConversionEffect::kDivByAlpha_RoundDown_PMConversion:
joshualitt30ba4362014-08-21 20:18:45 -070072 fsBuilder->codeAppendf(
changjun.yangcecc91c2014-08-19 18:24:30 -070073 "%s = %s.a <= 0.0 ? vec4(0,0,0,0) : vec4(floor(%s.%s / %s.a * 255.0) / 255.0, %s.a);",
74 tmpVar.c_str(), tmpVar.c_str(), tmpVar.c_str(), swiz, tmpVar.c_str(), tmpVar.c_str());
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000075 break;
robertphillips@google.com2af1b182012-08-28 11:23:09 +000076 default:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +000077 SkFAIL("Unknown conversion op.");
robertphillips@google.com2af1b182012-08-28 11:23:09 +000078 break;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000079 }
joshualitt30ba4362014-08-21 20:18:45 -070080 fsBuilder->codeAppendf("%s = %s;", outputColor, tmpVar.c_str());
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000081 }
bsalomon@google.comf910d3b2013-03-07 17:06:57 +000082 SkString modulate;
83 GrGLSLMulVarBy4f(&modulate, 2, outputColor, inputColor);
joshualitt30ba4362014-08-21 20:18:45 -070084 fsBuilder->codeAppend(modulate.c_str());
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000085 }
86
joshualitt49586be2014-09-16 08:21:41 -070087 static inline void GenKey(const GrEffect& effect, const GrGLCaps&,
bsalomon63e99f72014-07-21 08:03:14 -070088 GrEffectKeyBuilder* b) {
joshualitt49586be2014-09-16 08:21:41 -070089 const GrConfigConversionEffect& conv = effect.cast<GrConfigConversionEffect>();
bsalomon63e99f72014-07-21 08:03:14 -070090 uint32_t key = (conv.swapsRedAndBlue() ? 0 : 1) | (conv.pmConversion() << 1);
91 b->add32(key);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000092 }
93
94private:
95 bool fSwapRedAndBlue;
96 GrConfigConversionEffect::PMConversion fPMConversion;
97
bsalomon@google.com22a800a2012-10-26 19:16:46 +000098 typedef GrGLEffect INHERITED;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000099
100};
101
102///////////////////////////////////////////////////////////////////////////////
103
104GrConfigConversionEffect::GrConfigConversionEffect(GrTexture* texture,
105 bool swapRedAndBlue,
bsalomon@google.comb1456d72012-11-02 18:23:45 +0000106 PMConversion pmConversion,
107 const SkMatrix& matrix)
108 : GrSingleTextureEffect(texture, matrix)
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000109 , fSwapRedAndBlue(swapRedAndBlue)
110 , fPMConversion(pmConversion) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000111 SkASSERT(kRGBA_8888_GrPixelConfig == texture->config() ||
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000112 kBGRA_8888_GrPixelConfig == texture->config());
113 // Why did we pollute our texture cache instead of using a GrSingleTextureEffect?
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000114 SkASSERT(swapRedAndBlue || kNone_PMConversion != pmConversion);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000115}
116
bsalomon@google.com396e61f2012-10-25 19:00:29 +0000117const GrBackendEffectFactory& GrConfigConversionEffect::getFactory() const {
118 return GrTBackendEffectFactory<GrConfigConversionEffect>::getInstance();
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000119}
120
bsalomon@google.com8a252f72013-01-22 20:35:13 +0000121bool GrConfigConversionEffect::onIsEqual(const GrEffect& s) const {
joshualitt49586be2014-09-16 08:21:41 -0700122 const GrConfigConversionEffect& other = s.cast<GrConfigConversionEffect>();
bsalomon@google.com8a252f72013-01-22 20:35:13 +0000123 return this->texture(0) == s.texture(0) &&
bsalomon@google.com68b58c92013-01-17 16:50:08 +0000124 other.fSwapRedAndBlue == fSwapRedAndBlue &&
125 other.fPMConversion == fPMConversion;
126}
127
128void GrConfigConversionEffect::getConstantColorComponents(GrColor* color,
129 uint32_t* validFlags) const {
130 this->updateConstantColorComponentsForModulation(color, validFlags);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000131}
132
133///////////////////////////////////////////////////////////////////////////////
134
bsalomon@google.comf271cc72012-10-24 19:35:13 +0000135GR_DEFINE_EFFECT_TEST(GrConfigConversionEffect);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000136
bsalomon83d081a2014-07-08 09:56:10 -0700137GrEffect* GrConfigConversionEffect::TestCreate(SkRandom* random,
138 GrContext*,
139 const GrDrawTargetCaps&,
140 GrTexture* textures[]) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000141 PMConversion pmConv = static_cast<PMConversion>(random->nextULessThan(kPMConversionCnt));
142 bool swapRB;
143 if (kNone_PMConversion == pmConv) {
144 swapRB = true;
145 } else {
146 swapRB = random->nextBool();
147 }
bsalomon55fad7a2014-07-08 07:34:20 -0700148 return SkNEW_ARGS(GrConfigConversionEffect,
bsalomon@google.com6340a412013-01-22 19:55:59 +0000149 (textures[GrEffectUnitTest::kSkiaPMTextureIdx],
150 swapRB,
151 pmConv,
bsalomon55fad7a2014-07-08 07:34:20 -0700152 GrEffectUnitTest::TestMatrix(random)));
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000153}
154
155///////////////////////////////////////////////////////////////////////////////
156void GrConfigConversionEffect::TestForPreservingPMConversions(GrContext* context,
157 PMConversion* pmToUPMRule,
158 PMConversion* upmToPMRule) {
159 *pmToUPMRule = kNone_PMConversion;
160 *upmToPMRule = kNone_PMConversion;
161 SkAutoTMalloc<uint32_t> data(256 * 256 * 3);
162 uint32_t* srcData = data.get();
163 uint32_t* firstRead = data.get() + 256 * 256;
164 uint32_t* secondRead = data.get() + 2 * 256 * 256;
165
166 // Fill with every possible premultiplied A, color channel value. There will be 256-y duplicate
167 // values in row y. We set r,g, and b to the same value since they are handled identically.
168 for (int y = 0; y < 256; ++y) {
169 for (int x = 0; x < 256; ++x) {
170 uint8_t* color = reinterpret_cast<uint8_t*>(&srcData[256*y + x]);
171 color[3] = y;
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000172 color[2] = SkTMin(x, y);
173 color[1] = SkTMin(x, y);
174 color[0] = SkTMin(x, y);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000175 }
176 }
177
178 GrTextureDesc desc;
179 desc.fFlags = kRenderTarget_GrTextureFlagBit |
180 kNoStencil_GrTextureFlagBit;
181 desc.fWidth = 256;
182 desc.fHeight = 256;
183 desc.fConfig = kRGBA_8888_GrPixelConfig;
184
185 SkAutoTUnref<GrTexture> readTex(context->createUncachedTexture(desc, NULL, 0));
186 if (!readTex.get()) {
187 return;
188 }
189 SkAutoTUnref<GrTexture> tempTex(context->createUncachedTexture(desc, NULL, 0));
190 if (!tempTex.get()) {
191 return;
192 }
193 desc.fFlags = kNone_GrTextureFlags;
194 SkAutoTUnref<GrTexture> dataTex(context->createUncachedTexture(desc, data, 0));
195 if (!dataTex.get()) {
196 return;
197 }
198
199 static const PMConversion kConversionRules[][2] = {
200 {kDivByAlpha_RoundDown_PMConversion, kMulByAlpha_RoundUp_PMConversion},
201 {kDivByAlpha_RoundUp_PMConversion, kMulByAlpha_RoundDown_PMConversion},
202 };
203
204 GrContext::AutoWideOpenIdentityDraw awoid(context, NULL);
205
206 bool failed = true;
207
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000208 for (size_t i = 0; i < SK_ARRAY_COUNT(kConversionRules) && failed; ++i) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000209 *pmToUPMRule = kConversionRules[i][0];
210 *upmToPMRule = kConversionRules[i][1];
211
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000212 static const SkRect kDstRect = SkRect::MakeWH(SkIntToScalar(256), SkIntToScalar(256));
213 static const SkRect kSrcRect = SkRect::MakeWH(SK_Scalar1, SK_Scalar1);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000214 // We do a PM->UPM draw from dataTex to readTex and read the data. Then we do a UPM->PM draw
215 // from readTex to tempTex followed by a PM->UPM draw to readTex and finally read the data.
216 // We then verify that two reads produced the same values.
217
bsalomon55fad7a2014-07-08 07:34:20 -0700218 SkAutoTUnref<GrEffect> pmToUPM1(SkNEW_ARGS(GrConfigConversionEffect, (dataTex,
219 false,
220 *pmToUPMRule,
221 SkMatrix::I())));
222 SkAutoTUnref<GrEffect> upmToPM(SkNEW_ARGS(GrConfigConversionEffect, (readTex,
223 false,
224 *upmToPMRule,
225 SkMatrix::I())));
226 SkAutoTUnref<GrEffect> pmToUPM2(SkNEW_ARGS(GrConfigConversionEffect, (tempTex,
227 false,
228 *pmToUPMRule,
229 SkMatrix::I())));
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000230
231 context->setRenderTarget(readTex->asRenderTarget());
commit-bot@chromium.org42dacab2013-07-13 17:24:24 +0000232 GrPaint paint1;
bsalomon55fad7a2014-07-08 07:34:20 -0700233 paint1.addColorEffect(pmToUPM1);
commit-bot@chromium.org42dacab2013-07-13 17:24:24 +0000234 context->drawRectToRect(paint1, kDstRect, kSrcRect);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000235
236 readTex->readPixels(0, 0, 256, 256, kRGBA_8888_GrPixelConfig, firstRead);
237
238 context->setRenderTarget(tempTex->asRenderTarget());
commit-bot@chromium.org42dacab2013-07-13 17:24:24 +0000239 GrPaint paint2;
bsalomon55fad7a2014-07-08 07:34:20 -0700240 paint2.addColorEffect(upmToPM);
commit-bot@chromium.org42dacab2013-07-13 17:24:24 +0000241 context->drawRectToRect(paint2, kDstRect, kSrcRect);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000242 context->setRenderTarget(readTex->asRenderTarget());
commit-bot@chromium.org42dacab2013-07-13 17:24:24 +0000243
244 GrPaint paint3;
bsalomon55fad7a2014-07-08 07:34:20 -0700245 paint3.addColorEffect(pmToUPM2);
commit-bot@chromium.org42dacab2013-07-13 17:24:24 +0000246 context->drawRectToRect(paint3, kDstRect, kSrcRect);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000247
248 readTex->readPixels(0, 0, 256, 256, kRGBA_8888_GrPixelConfig, secondRead);
249
250 failed = false;
251 for (int y = 0; y < 256 && !failed; ++y) {
252 for (int x = 0; x <= y; ++x) {
253 if (firstRead[256 * y + x] != secondRead[256 * y + x]) {
254 failed = true;
255 break;
256 }
257 }
258 }
259 }
260 if (failed) {
261 *pmToUPMRule = kNone_PMConversion;
262 *upmToPMRule = kNone_PMConversion;
263 }
264}
265
bsalomon83d081a2014-07-08 09:56:10 -0700266const GrEffect* GrConfigConversionEffect::Create(GrTexture* texture,
267 bool swapRedAndBlue,
268 PMConversion pmConversion,
269 const SkMatrix& matrix) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000270 if (!swapRedAndBlue && kNone_PMConversion == pmConversion) {
bsalomon@google.comadc65362013-01-28 14:26:09 +0000271 // If we returned a GrConfigConversionEffect that was equivalent to a GrSimpleTextureEffect
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000272 // then we may pollute our texture cache with redundant shaders. So in the case that no
bsalomon@google.comadc65362013-01-28 14:26:09 +0000273 // conversions were requested we instead return a GrSimpleTextureEffect.
274 return GrSimpleTextureEffect::Create(texture, matrix);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000275 } else {
276 if (kRGBA_8888_GrPixelConfig != texture->config() &&
277 kBGRA_8888_GrPixelConfig != texture->config() &&
278 kNone_PMConversion != pmConversion) {
279 // The PM conversions assume colors are 0..255
bsalomon@google.comadc65362013-01-28 14:26:09 +0000280 return NULL;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000281 }
bsalomon55fad7a2014-07-08 07:34:20 -0700282 return SkNEW_ARGS(GrConfigConversionEffect, (texture,
283 swapRedAndBlue,
284 pmConversion,
285 matrix));
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000286 }
287}