blob: df8ab8d835a24bc15b99c5d418233f4a245d45c0 [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"
bsalomon@google.comb1456d72012-11-02 18:23:45 +000013#include "gl/GrGLEffectMatrix.h"
14#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,
bsalomon@google.comc7818882013-03-20 19:19:53 +000019 const GrDrawEffect& drawEffect)
20 : INHERITED (factory)
21 , fEffectMatrix(drawEffect.castEffect<GrConfigConversionEffect>().coordsType()) {
22 const GrConfigConversionEffect& effect = drawEffect.castEffect<GrConfigConversionEffect>();
bsalomon@google.com021fc732012-10-25 12:47:42 +000023 fSwapRedAndBlue = effect.swapsRedAndBlue();
24 fPMConversion = effect.pmConversion();
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000025 }
26
bsalomon@google.com22a800a2012-10-26 19:16:46 +000027 virtual void emitCode(GrGLShaderBuilder* builder,
bsalomon@google.comc7818882013-03-20 19:19:53 +000028 const GrDrawEffect&,
bsalomon@google.comb1456d72012-11-02 18:23:45 +000029 EffectKey key,
bsalomon@google.com22a800a2012-10-26 19:16:46 +000030 const char* outputColor,
31 const char* inputColor,
32 const TextureSamplerArray& samplers) SK_OVERRIDE {
bsalomon@google.comb1456d72012-11-02 18:23:45 +000033 const char* coords;
bsalomon@google.comc7818882013-03-20 19:19:53 +000034 GrSLType coordsType = fEffectMatrix.emitCode(builder, key, &coords);
bsalomon@google.comf910d3b2013-03-07 17:06:57 +000035 builder->fsCodeAppendf("\t\t%s = ", outputColor);
36 builder->appendTextureLookup(GrGLShaderBuilder::kFragment_ShaderType,
37 samplers[0],
38 coords,
39 coordsType);
40 builder->fsCodeAppend(";\n");
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000041 if (GrConfigConversionEffect::kNone_PMConversion == fPMConversion) {
42 GrAssert(fSwapRedAndBlue);
bsalomon@google.comf910d3b2013-03-07 17:06:57 +000043 builder->fsCodeAppendf("\t%s = %s.bgra;\n", outputColor, outputColor);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000044 } else {
45 const char* swiz = fSwapRedAndBlue ? "bgr" : "rgb";
46 switch (fPMConversion) {
47 case GrConfigConversionEffect::kMulByAlpha_RoundUp_PMConversion:
bsalomon@google.comf910d3b2013-03-07 17:06:57 +000048 builder->fsCodeAppendf(
bsalomon@google.com868a8e72012-08-30 19:11:34 +000049 "\t\t%s = vec4(ceil(%s.%s * %s.a * 255.0) / 255.0, %s.a);\n",
50 outputColor, outputColor, swiz, outputColor, outputColor);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000051 break;
52 case GrConfigConversionEffect::kMulByAlpha_RoundDown_PMConversion:
bsalomon@google.comf910d3b2013-03-07 17:06:57 +000053 builder->fsCodeAppendf(
bsalomon@google.com868a8e72012-08-30 19:11:34 +000054 "\t\t%s = vec4(floor(%s.%s * %s.a * 255.0) / 255.0, %s.a);\n",
55 outputColor, outputColor, swiz, outputColor, outputColor);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000056 break;
57 case GrConfigConversionEffect::kDivByAlpha_RoundUp_PMConversion:
bsalomon@google.comf910d3b2013-03-07 17:06:57 +000058 builder->fsCodeAppendf("\t\t%s = %s.a <= 0.0 ? vec4(0,0,0,0) : vec4(ceil(%s.%s / %s.a * 255.0) / 255.0, %s.a);\n",
bsalomon@google.com868a8e72012-08-30 19:11:34 +000059 outputColor, outputColor, outputColor, swiz, outputColor, outputColor);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000060 break;
61 case GrConfigConversionEffect::kDivByAlpha_RoundDown_PMConversion:
bsalomon@google.comf910d3b2013-03-07 17:06:57 +000062 builder->fsCodeAppendf("\t\t%s = %s.a <= 0.0 ? vec4(0,0,0,0) : vec4(floor(%s.%s / %s.a * 255.0) / 255.0, %s.a);\n",
bsalomon@google.com868a8e72012-08-30 19:11:34 +000063 outputColor, outputColor, outputColor, swiz, outputColor, outputColor);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000064 break;
robertphillips@google.com2af1b182012-08-28 11:23:09 +000065 default:
66 GrCrash("Unknown conversion op.");
67 break;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000068 }
69 }
bsalomon@google.comf910d3b2013-03-07 17:06:57 +000070 SkString modulate;
71 GrGLSLMulVarBy4f(&modulate, 2, outputColor, inputColor);
72 builder->fsCodeAppend(modulate.c_str());
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000073 }
74
bsalomon@google.comc7818882013-03-20 19:19:53 +000075 void setData(const GrGLUniformManager& uman, const GrDrawEffect& drawEffect) {
76 const GrConfigConversionEffect& conv = drawEffect.castEffect<GrConfigConversionEffect>();
77 fEffectMatrix.setData(uman, conv.getMatrix(), drawEffect, conv.texture(0));
bsalomon@google.comb1456d72012-11-02 18:23:45 +000078 }
79
bsalomon@google.comc7818882013-03-20 19:19:53 +000080 static inline EffectKey GenKey(const GrDrawEffect& drawEffect, const GrGLCaps&) {
81 const GrConfigConversionEffect& conv = drawEffect.castEffect<GrConfigConversionEffect>();
82 EffectKey key = static_cast<EffectKey>(conv.swapsRedAndBlue()) | (conv.pmConversion() << 1);
bsalomon@google.comb1456d72012-11-02 18:23:45 +000083 key <<= GrGLEffectMatrix::kKeyBits;
bsalomon@google.comc7818882013-03-20 19:19:53 +000084 EffectKey matrixKey = GrGLEffectMatrix::GenKey(conv.getMatrix(),
85 drawEffect,
86 conv.coordsType(),
87 conv.texture(0));
bsalomon@google.comb1456d72012-11-02 18:23:45 +000088 GrAssert(!(matrixKey & key));
89 return matrixKey | key;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000090 }
91
92private:
93 bool fSwapRedAndBlue;
94 GrConfigConversionEffect::PMConversion fPMConversion;
bsalomon@google.comb1456d72012-11-02 18:23:45 +000095 GrGLEffectMatrix fEffectMatrix;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000096
bsalomon@google.com22a800a2012-10-26 19:16:46 +000097 typedef GrGLEffect INHERITED;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000098
99};
100
101///////////////////////////////////////////////////////////////////////////////
102
103GrConfigConversionEffect::GrConfigConversionEffect(GrTexture* texture,
104 bool swapRedAndBlue,
bsalomon@google.comb1456d72012-11-02 18:23:45 +0000105 PMConversion pmConversion,
106 const SkMatrix& matrix)
107 : GrSingleTextureEffect(texture, matrix)
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000108 , fSwapRedAndBlue(swapRedAndBlue)
109 , fPMConversion(pmConversion) {
110 GrAssert(kRGBA_8888_GrPixelConfig == texture->config() ||
111 kBGRA_8888_GrPixelConfig == texture->config());
112 // Why did we pollute our texture cache instead of using a GrSingleTextureEffect?
113 GrAssert(swapRedAndBlue || kNone_PMConversion != pmConversion);
114}
115
bsalomon@google.com396e61f2012-10-25 19:00:29 +0000116const GrBackendEffectFactory& GrConfigConversionEffect::getFactory() const {
117 return GrTBackendEffectFactory<GrConfigConversionEffect>::getInstance();
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000118}
119
bsalomon@google.com8a252f72013-01-22 20:35:13 +0000120bool GrConfigConversionEffect::onIsEqual(const GrEffect& s) const {
bsalomon@google.com6340a412013-01-22 19:55:59 +0000121 const GrConfigConversionEffect& other = CastEffect<GrConfigConversionEffect>(s);
bsalomon@google.com8a252f72013-01-22 20:35:13 +0000122 return this->texture(0) == s.texture(0) &&
bsalomon@google.com68b58c92013-01-17 16:50:08 +0000123 other.fSwapRedAndBlue == fSwapRedAndBlue &&
124 other.fPMConversion == fPMConversion;
125}
126
127void GrConfigConversionEffect::getConstantColorComponents(GrColor* color,
128 uint32_t* validFlags) const {
129 this->updateConstantColorComponentsForModulation(color, validFlags);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000130}
131
132///////////////////////////////////////////////////////////////////////////////
133
bsalomon@google.comf271cc72012-10-24 19:35:13 +0000134GR_DEFINE_EFFECT_TEST(GrConfigConversionEffect);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000135
bsalomon@google.com73a96942013-02-13 16:31:19 +0000136GrEffectRef* GrConfigConversionEffect::TestCreate(SkMWCRandom* random,
sugoi@google.come0e385c2013-03-11 18:50:03 +0000137 GrContext*,
bsalomon@google.com0ac6af42013-01-16 15:16:18 +0000138 GrTexture* textures[]) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000139 PMConversion pmConv = static_cast<PMConversion>(random->nextULessThan(kPMConversionCnt));
140 bool swapRB;
141 if (kNone_PMConversion == pmConv) {
142 swapRB = true;
143 } else {
144 swapRB = random->nextBool();
145 }
bsalomon@google.com6340a412013-01-22 19:55:59 +0000146 AutoEffectUnref effect(SkNEW_ARGS(GrConfigConversionEffect,
147 (textures[GrEffectUnitTest::kSkiaPMTextureIdx],
148 swapRB,
149 pmConv,
150 GrEffectUnitTest::TestMatrix(random))));
bsalomon@google.coma1ebbe42013-01-16 15:51:47 +0000151 return CreateEffectRef(effect);
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;
171 color[2] = GrMin(x, y);
172 color[1] = GrMin(x, y);
173 color[0] = GrMin(x, y);
174 }
175 }
176
177 GrTextureDesc desc;
178 desc.fFlags = kRenderTarget_GrTextureFlagBit |
179 kNoStencil_GrTextureFlagBit;
180 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 }
192 desc.fFlags = kNone_GrTextureFlags;
193 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
207 for (size_t i = 0; i < GR_ARRAY_COUNT(kConversionRules) && failed; ++i) {
208 *pmToUPMRule = kConversionRules[i][0];
209 *upmToPMRule = kConversionRules[i][1];
210
bsalomon@google.com81712882012-11-01 17:12:34 +0000211 static const GrRect kDstRect = GrRect::MakeWH(SkIntToScalar(256), SkIntToScalar(256));
212 static const GrRect kSrcRect = GrRect::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
217 GrPaint paint;
bsalomon@google.com6340a412013-01-22 19:55:59 +0000218 AutoEffectUnref pmToUPM1(SkNEW_ARGS(GrConfigConversionEffect, (dataTex,
219 false,
220 *pmToUPMRule,
221 SkMatrix::I())));
222 AutoEffectUnref upmToPM(SkNEW_ARGS(GrConfigConversionEffect, (readTex,
223 false,
224 *upmToPMRule,
225 SkMatrix::I())));
226 AutoEffectUnref pmToUPM2(SkNEW_ARGS(GrConfigConversionEffect, (tempTex,
227 false,
228 *pmToUPMRule,
229 SkMatrix::I())));
bsalomon@google.com0ac6af42013-01-16 15:16:18 +0000230
bsalomon@google.coma1ebbe42013-01-16 15:51:47 +0000231 SkAutoTUnref<GrEffectRef> pmToUPMEffect1(CreateEffectRef(pmToUPM1));
232 SkAutoTUnref<GrEffectRef> upmToPMEffect(CreateEffectRef(upmToPM));
233 SkAutoTUnref<GrEffectRef> pmToUPMEffect2(CreateEffectRef(pmToUPM2));
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000234
235 context->setRenderTarget(readTex->asRenderTarget());
bsalomon@google.com08283af2012-10-26 13:01:20 +0000236 paint.colorStage(0)->setEffect(pmToUPMEffect1);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000237 context->drawRectToRect(paint, kDstRect, kSrcRect);
238
239 readTex->readPixels(0, 0, 256, 256, kRGBA_8888_GrPixelConfig, firstRead);
240
241 context->setRenderTarget(tempTex->asRenderTarget());
bsalomon@google.com08283af2012-10-26 13:01:20 +0000242 paint.colorStage(0)->setEffect(upmToPMEffect);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000243 context->drawRectToRect(paint, kDstRect, kSrcRect);
244 context->setRenderTarget(readTex->asRenderTarget());
bsalomon@google.com08283af2012-10-26 13:01:20 +0000245 paint.colorStage(0)->setEffect(pmToUPMEffect2);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000246 context->drawRectToRect(paint, kDstRect, kSrcRect);
247
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
bsalomon@google.comadc65362013-01-28 14:26:09 +0000266const GrEffectRef* 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 }
bsalomon@google.com6340a412013-01-22 19:55:59 +0000282 AutoEffectUnref effect(SkNEW_ARGS(GrConfigConversionEffect, (texture,
283 swapRedAndBlue,
284 pmConversion,
285 matrix)));
bsalomon@google.comadc65362013-01-28 14:26:09 +0000286 return CreateEffectRef(effect);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000287 }
288}