blob: 652c6bc292868d89513825807234e2aab52bd2b4 [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.comd698f772012-10-25 13:22:00 +00009#include "gl/GrGLEffect.h"
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000010
bsalomon@google.comaa600932012-10-25 13:29:20 +000011class GrGLConfigConversionEffect : public GrGLLegacyEffect {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000012public:
bsalomon@google.com396e61f2012-10-25 19:00:29 +000013 GrGLConfigConversionEffect(const GrBackendEffectFactory& factory,
bsalomon@google.coma469c282012-10-24 18:28:34 +000014 const GrEffect& s) : INHERITED (factory) {
bsalomon@google.com021fc732012-10-25 12:47:42 +000015 const GrConfigConversionEffect& effect = static_cast<const GrConfigConversionEffect&>(s);
16 fSwapRedAndBlue = effect.swapsRedAndBlue();
17 fPMConversion = effect.pmConversion();
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000018 }
19
20 virtual void emitVS(GrGLShaderBuilder* builder,
21 const char* vertexCoords) SK_OVERRIDE { }
22 virtual void emitFS(GrGLShaderBuilder* builder,
23 const char* outputColor,
24 const char* inputColor,
bsalomon@google.comf06df1b2012-09-06 20:22:31 +000025 const TextureSamplerArray& samplers) SK_OVERRIDE {
bsalomon@google.com868a8e72012-08-30 19:11:34 +000026 builder->fFSCode.appendf("\t\t%s = ", outputColor);
bsalomon@google.comf06df1b2012-09-06 20:22:31 +000027 builder->appendTextureLookup(&builder->fFSCode, samplers[0]);
bsalomon@google.com2d8edaf2012-09-07 14:47:31 +000028 builder->fFSCode.append(";\n");
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000029 if (GrConfigConversionEffect::kNone_PMConversion == fPMConversion) {
30 GrAssert(fSwapRedAndBlue);
bsalomon@google.com868a8e72012-08-30 19:11:34 +000031 builder->fFSCode.appendf("\t%s = %s.bgra;\n", outputColor, outputColor);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000032 } else {
33 const char* swiz = fSwapRedAndBlue ? "bgr" : "rgb";
34 switch (fPMConversion) {
35 case GrConfigConversionEffect::kMulByAlpha_RoundUp_PMConversion:
36 builder->fFSCode.appendf(
bsalomon@google.com868a8e72012-08-30 19:11:34 +000037 "\t\t%s = vec4(ceil(%s.%s * %s.a * 255.0) / 255.0, %s.a);\n",
38 outputColor, outputColor, swiz, outputColor, outputColor);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000039 break;
40 case GrConfigConversionEffect::kMulByAlpha_RoundDown_PMConversion:
41 builder->fFSCode.appendf(
bsalomon@google.com868a8e72012-08-30 19:11:34 +000042 "\t\t%s = vec4(floor(%s.%s * %s.a * 255.0) / 255.0, %s.a);\n",
43 outputColor, outputColor, swiz, outputColor, outputColor);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000044 break;
45 case GrConfigConversionEffect::kDivByAlpha_RoundUp_PMConversion:
bsalomon@google.com868a8e72012-08-30 19:11:34 +000046 builder->fFSCode.appendf("\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",
47 outputColor, outputColor, outputColor, swiz, outputColor, outputColor);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000048 break;
49 case GrConfigConversionEffect::kDivByAlpha_RoundDown_PMConversion:
bsalomon@google.com868a8e72012-08-30 19:11:34 +000050 builder->fFSCode.appendf("\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",
51 outputColor, outputColor, outputColor, swiz, outputColor, outputColor);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000052 break;
robertphillips@google.com2af1b182012-08-28 11:23:09 +000053 default:
54 GrCrash("Unknown conversion op.");
55 break;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000056 }
57 }
bsalomon@google.com868a8e72012-08-30 19:11:34 +000058 GrGLSLMulVarBy4f(&builder->fFSCode, 2, outputColor, inputColor);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000059 }
60
bsalomon@google.coma469c282012-10-24 18:28:34 +000061 static inline StageKey GenKey(const GrEffect& s, const GrGLCaps&) {
bsalomon@google.com021fc732012-10-25 12:47:42 +000062 const GrConfigConversionEffect& effect = static_cast<const GrConfigConversionEffect&>(s);
63 return static_cast<int>(effect.swapsRedAndBlue()) | (effect.pmConversion() << 1);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000064 }
65
66private:
67 bool fSwapRedAndBlue;
68 GrConfigConversionEffect::PMConversion fPMConversion;
69
bsalomon@google.comaa600932012-10-25 13:29:20 +000070 typedef GrGLLegacyEffect INHERITED;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000071
72};
73
74///////////////////////////////////////////////////////////////////////////////
75
76GrConfigConversionEffect::GrConfigConversionEffect(GrTexture* texture,
77 bool swapRedAndBlue,
78 PMConversion pmConversion)
79 : GrSingleTextureEffect(texture)
80 , fSwapRedAndBlue(swapRedAndBlue)
81 , fPMConversion(pmConversion) {
82 GrAssert(kRGBA_8888_GrPixelConfig == texture->config() ||
83 kBGRA_8888_GrPixelConfig == texture->config());
84 // Why did we pollute our texture cache instead of using a GrSingleTextureEffect?
85 GrAssert(swapRedAndBlue || kNone_PMConversion != pmConversion);
86}
87
bsalomon@google.com396e61f2012-10-25 19:00:29 +000088const GrBackendEffectFactory& GrConfigConversionEffect::getFactory() const {
89 return GrTBackendEffectFactory<GrConfigConversionEffect>::getInstance();
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000090}
91
bsalomon@google.coma469c282012-10-24 18:28:34 +000092bool GrConfigConversionEffect::isEqual(const GrEffect& s) const {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +000093 const GrConfigConversionEffect& other = static_cast<const GrConfigConversionEffect&>(s);
94 return other.fSwapRedAndBlue == fSwapRedAndBlue && other.fPMConversion == fPMConversion;
95}
96
97///////////////////////////////////////////////////////////////////////////////
98
bsalomon@google.comf271cc72012-10-24 19:35:13 +000099GR_DEFINE_EFFECT_TEST(GrConfigConversionEffect);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000100
bsalomon@google.coma469c282012-10-24 18:28:34 +0000101GrEffect* GrConfigConversionEffect::TestCreate(SkRandom* random,
102 GrContext* context,
103 GrTexture* textures[]) {
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000104 PMConversion pmConv = static_cast<PMConversion>(random->nextULessThan(kPMConversionCnt));
105 bool swapRB;
106 if (kNone_PMConversion == pmConv) {
107 swapRB = true;
108 } else {
109 swapRB = random->nextBool();
110 }
111 return SkNEW_ARGS(GrConfigConversionEffect,
bsalomon@google.com6f261be2012-10-24 19:07:10 +0000112 (textures[GrEffectUnitTest::kSkiaPMTextureIdx], swapRB, pmConv));
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000113}
114
115///////////////////////////////////////////////////////////////////////////////
116void GrConfigConversionEffect::TestForPreservingPMConversions(GrContext* context,
117 PMConversion* pmToUPMRule,
118 PMConversion* upmToPMRule) {
119 *pmToUPMRule = kNone_PMConversion;
120 *upmToPMRule = kNone_PMConversion;
121 SkAutoTMalloc<uint32_t> data(256 * 256 * 3);
122 uint32_t* srcData = data.get();
123 uint32_t* firstRead = data.get() + 256 * 256;
124 uint32_t* secondRead = data.get() + 2 * 256 * 256;
125
126 // Fill with every possible premultiplied A, color channel value. There will be 256-y duplicate
127 // values in row y. We set r,g, and b to the same value since they are handled identically.
128 for (int y = 0; y < 256; ++y) {
129 for (int x = 0; x < 256; ++x) {
130 uint8_t* color = reinterpret_cast<uint8_t*>(&srcData[256*y + x]);
131 color[3] = y;
132 color[2] = GrMin(x, y);
133 color[1] = GrMin(x, y);
134 color[0] = GrMin(x, y);
135 }
136 }
137
138 GrTextureDesc desc;
139 desc.fFlags = kRenderTarget_GrTextureFlagBit |
140 kNoStencil_GrTextureFlagBit;
141 desc.fWidth = 256;
142 desc.fHeight = 256;
143 desc.fConfig = kRGBA_8888_GrPixelConfig;
144
145 SkAutoTUnref<GrTexture> readTex(context->createUncachedTexture(desc, NULL, 0));
146 if (!readTex.get()) {
147 return;
148 }
149 SkAutoTUnref<GrTexture> tempTex(context->createUncachedTexture(desc, NULL, 0));
150 if (!tempTex.get()) {
151 return;
152 }
153 desc.fFlags = kNone_GrTextureFlags;
154 SkAutoTUnref<GrTexture> dataTex(context->createUncachedTexture(desc, data, 0));
155 if (!dataTex.get()) {
156 return;
157 }
158
159 static const PMConversion kConversionRules[][2] = {
160 {kDivByAlpha_RoundDown_PMConversion, kMulByAlpha_RoundUp_PMConversion},
161 {kDivByAlpha_RoundUp_PMConversion, kMulByAlpha_RoundDown_PMConversion},
162 };
163
164 GrContext::AutoWideOpenIdentityDraw awoid(context, NULL);
165
166 bool failed = true;
167
168 for (size_t i = 0; i < GR_ARRAY_COUNT(kConversionRules) && failed; ++i) {
169 *pmToUPMRule = kConversionRules[i][0];
170 *upmToPMRule = kConversionRules[i][1];
171
172 static const GrRect kDstRect = GrRect::MakeWH(GrIntToScalar(256), GrIntToScalar(256));
173 static const GrRect kSrcRect = GrRect::MakeWH(GR_Scalar1, GR_Scalar1);
174 // We do a PM->UPM draw from dataTex to readTex and read the data. Then we do a UPM->PM draw
175 // from readTex to tempTex followed by a PM->UPM draw to readTex and finally read the data.
176 // We then verify that two reads produced the same values.
177
178 GrPaint paint;
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000179
bsalomon@google.com021fc732012-10-25 12:47:42 +0000180 SkAutoTUnref<GrEffect> pmToUPMEffect1(SkNEW_ARGS(GrConfigConversionEffect,
bsalomon@google.coma469c282012-10-24 18:28:34 +0000181 (dataTex, false, *pmToUPMRule)));
bsalomon@google.com021fc732012-10-25 12:47:42 +0000182 SkAutoTUnref<GrEffect> upmToPMEffect(SkNEW_ARGS(GrConfigConversionEffect,
bsalomon@google.coma469c282012-10-24 18:28:34 +0000183 (readTex, false, *upmToPMRule)));
bsalomon@google.com021fc732012-10-25 12:47:42 +0000184 SkAutoTUnref<GrEffect> pmToUPMEffect2(SkNEW_ARGS(GrConfigConversionEffect,
bsalomon@google.coma469c282012-10-24 18:28:34 +0000185 (tempTex, false, *pmToUPMRule)));
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000186
187 context->setRenderTarget(readTex->asRenderTarget());
bsalomon@google.com021fc732012-10-25 12:47:42 +0000188 paint.colorSampler(0)->setEffect(pmToUPMEffect1);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000189 context->drawRectToRect(paint, kDstRect, kSrcRect);
190
191 readTex->readPixels(0, 0, 256, 256, kRGBA_8888_GrPixelConfig, firstRead);
192
193 context->setRenderTarget(tempTex->asRenderTarget());
bsalomon@google.com021fc732012-10-25 12:47:42 +0000194 paint.colorSampler(0)->setEffect(upmToPMEffect);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000195 context->drawRectToRect(paint, kDstRect, kSrcRect);
196 context->setRenderTarget(readTex->asRenderTarget());
bsalomon@google.com021fc732012-10-25 12:47:42 +0000197 paint.colorSampler(0)->setEffect(pmToUPMEffect2);
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000198 context->drawRectToRect(paint, kDstRect, kSrcRect);
199
200 readTex->readPixels(0, 0, 256, 256, kRGBA_8888_GrPixelConfig, secondRead);
201
202 failed = false;
203 for (int y = 0; y < 256 && !failed; ++y) {
204 for (int x = 0; x <= y; ++x) {
205 if (firstRead[256 * y + x] != secondRead[256 * y + x]) {
206 failed = true;
207 break;
208 }
209 }
210 }
211 }
212 if (failed) {
213 *pmToUPMRule = kNone_PMConversion;
214 *upmToPMRule = kNone_PMConversion;
215 }
216}
217
bsalomon@google.coma469c282012-10-24 18:28:34 +0000218GrEffect* GrConfigConversionEffect::Create(GrTexture* texture,
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000219 bool swapRedAndBlue,
220 PMConversion pmConversion) {
221 if (!swapRedAndBlue && kNone_PMConversion == pmConversion) {
222 // If we returned a GrConfigConversionEffect that was equivalent to a GrSingleTextureEffect
223 // then we may pollute our texture cache with redundant shaders. So in the case that no
224 // conversions were requested we instead return a GrSingleTextureEffect.
225 return SkNEW_ARGS(GrSingleTextureEffect, (texture));
226 } else {
227 if (kRGBA_8888_GrPixelConfig != texture->config() &&
228 kBGRA_8888_GrPixelConfig != texture->config() &&
229 kNone_PMConversion != pmConversion) {
230 // The PM conversions assume colors are 0..255
231 return NULL;
232 }
233 return SkNEW_ARGS(GrConfigConversionEffect, (texture, swapRedAndBlue, pmConversion));
234 }
235}