Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: src/gpu/effects/GrSimpleTextureEffect.cpp

Issue 491673002: Initial refactor of shaderbuilder (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/gpu/effects/GrRRectEffect.cpp ('k') | src/gpu/effects/GrTextureDomain.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2012 Google Inc. 2 * Copyright 2012 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "gl/builders/GrGLProgramBuilder.h"
8 #include "GrSimpleTextureEffect.h" 9 #include "GrSimpleTextureEffect.h"
9 #include "gl/GrGLEffect.h" 10 #include "gl/GrGLEffect.h"
10 #include "gl/GrGLShaderBuilder.h"
11 #include "gl/GrGLSL.h" 11 #include "gl/GrGLSL.h"
12 #include "gl/GrGLTexture.h" 12 #include "gl/GrGLTexture.h"
13 #include "GrTBackendEffectFactory.h" 13 #include "GrTBackendEffectFactory.h"
14 #include "GrTexture.h" 14 #include "GrTexture.h"
15 15
16 class GrGLSimpleTextureEffect : public GrGLEffect { 16 class GrGLSimpleTextureEffect : public GrGLEffect {
17 public: 17 public:
18 GrGLSimpleTextureEffect(const GrBackendEffectFactory& factory, const GrDrawE ffect&) 18 GrGLSimpleTextureEffect(const GrBackendEffectFactory& factory, const GrDrawE ffect&)
19 : INHERITED (factory) { 19 : INHERITED (factory) {
20 } 20 }
21 21
22 virtual void emitCode(GrGLShaderBuilder* builder, 22 virtual void emitCode(GrGLProgramBuilder* builder,
23 const GrDrawEffect& drawEffect, 23 const GrDrawEffect& drawEffect,
24 const GrEffectKey& key, 24 const GrEffectKey& key,
25 const char* outputColor, 25 const char* outputColor,
26 const char* inputColor, 26 const char* inputColor,
27 const TransformedCoordsArray& coords, 27 const TransformedCoordsArray& coords,
28 const TextureSamplerArray& samplers) SK_OVERRIDE { 28 const TextureSamplerArray& samplers) SK_OVERRIDE {
29 builder->fsCodeAppendf("\t%s = ", outputColor); 29 GrGLFragmentShaderBuilder* fsBuilder = builder->getFragmentShaderBuilder ();
30 builder->fsAppendTextureLookupAndModulate(inputColor, 30 fsBuilder->codeAppendf("\t%s = ", outputColor);
31 fsBuilder->appendTextureLookupAndModulate(inputColor,
31 samplers[0], 32 samplers[0],
32 coords[0].c_str(), 33 coords[0].c_str(),
33 coords[0].type()); 34 coords[0].type());
34 builder->fsCodeAppend(";\n"); 35 fsBuilder->codeAppend(";\n");
35 } 36 }
36 37
37 private: 38 private:
38 typedef GrGLEffect INHERITED; 39 typedef GrGLEffect INHERITED;
39 }; 40 };
40 41
41 /////////////////////////////////////////////////////////////////////////////// 42 ///////////////////////////////////////////////////////////////////////////////
42 43
43 void GrSimpleTextureEffect::getConstantColorComponents(GrColor* color, uint32_t* validFlags) const { 44 void GrSimpleTextureEffect::getConstantColorComponents(GrColor* color, uint32_t* validFlags) const {
44 this->updateConstantColorComponentsForModulation(color, validFlags); 45 this->updateConstantColorComponentsForModulation(color, validFlags);
(...skipping 27 matching lines...) Expand all
72 73
73 static const GrCoordSet kCoordSets[] = { 74 static const GrCoordSet kCoordSets[] = {
74 kLocal_GrCoordSet, 75 kLocal_GrCoordSet,
75 kPosition_GrCoordSet 76 kPosition_GrCoordSet
76 }; 77 };
77 GrCoordSet coordSet = kCoordSets[random->nextULessThan(SK_ARRAY_COUNT(kCoord Sets))]; 78 GrCoordSet coordSet = kCoordSets[random->nextULessThan(SK_ARRAY_COUNT(kCoord Sets))];
78 79
79 const SkMatrix& matrix = GrEffectUnitTest::TestMatrix(random); 80 const SkMatrix& matrix = GrEffectUnitTest::TestMatrix(random);
80 return GrSimpleTextureEffect::Create(textures[texIdx], matrix, coordSet); 81 return GrSimpleTextureEffect::Create(textures[texIdx], matrix, coordSet);
81 } 82 }
OLDNEW
« no previous file with comments | « src/gpu/effects/GrRRectEffect.cpp ('k') | src/gpu/effects/GrTextureDomain.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698