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

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

Issue 1862373003: Rename EmitArgs::fSamplers to fTexSamplers (Closed) Base URL: https://skia.googlesource.com/skia.git@upload3_infer
Patch Set: rebase Created 4 years, 8 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/GrMatrixConvolutionEffect.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 "GrSimpleTextureEffect.h" 8 #include "GrSimpleTextureEffect.h"
9 #include "GrInvariantOutput.h" 9 #include "GrInvariantOutput.h"
10 #include "GrTexture.h" 10 #include "GrTexture.h"
11 #include "glsl/GrGLSLFragmentProcessor.h" 11 #include "glsl/GrGLSLFragmentProcessor.h"
12 #include "glsl/GrGLSLFragmentShaderBuilder.h" 12 #include "glsl/GrGLSLFragmentShaderBuilder.h"
13 13
14 class GrGLSimpleTextureEffect : public GrGLSLFragmentProcessor { 14 class GrGLSimpleTextureEffect : public GrGLSLFragmentProcessor {
15 public: 15 public:
16 void emitCode(EmitArgs& args) override { 16 void emitCode(EmitArgs& args) override {
17 GrGLSLFPFragmentBuilder* fragBuilder = args.fFragBuilder; 17 GrGLSLFPFragmentBuilder* fragBuilder = args.fFragBuilder;
18 fragBuilder->codeAppendf("%s = ", args.fOutputColor); 18 fragBuilder->codeAppendf("%s = ", args.fOutputColor);
19 fragBuilder->appendTextureLookupAndModulate(args.fInputColor, 19 fragBuilder->appendTextureLookupAndModulate(args.fInputColor,
20 args.fSamplers[0], 20 args.fTexSamplers[0],
21 args.fCoords[0].c_str(), 21 args.fCoords[0].c_str(),
22 args.fCoords[0].getType()); 22 args.fCoords[0].getType());
23 fragBuilder->codeAppend(";"); 23 fragBuilder->codeAppend(";");
24 } 24 }
25 25
26 private: 26 private:
27 typedef GrGLSLFragmentProcessor INHERITED; 27 typedef GrGLSLFragmentProcessor INHERITED;
28 }; 28 };
29 29
30 /////////////////////////////////////////////////////////////////////////////// 30 ///////////////////////////////////////////////////////////////////////////////
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 63
64 static const GrCoordSet kCoordSets[] = { 64 static const GrCoordSet kCoordSets[] = {
65 kLocal_GrCoordSet, 65 kLocal_GrCoordSet,
66 kDevice_GrCoordSet 66 kDevice_GrCoordSet
67 }; 67 };
68 GrCoordSet coordSet = kCoordSets[d->fRandom->nextULessThan(SK_ARRAY_COUNT(kC oordSets))]; 68 GrCoordSet coordSet = kCoordSets[d->fRandom->nextULessThan(SK_ARRAY_COUNT(kC oordSets))];
69 69
70 const SkMatrix& matrix = GrTest::TestMatrix(d->fRandom); 70 const SkMatrix& matrix = GrTest::TestMatrix(d->fRandom);
71 return GrSimpleTextureEffect::Create(d->fTextures[texIdx], matrix, coordSet) ; 71 return GrSimpleTextureEffect::Create(d->fTextures[texIdx], matrix, coordSet) ;
72 } 72 }
OLDNEW
« no previous file with comments | « src/gpu/effects/GrMatrixConvolutionEffect.cpp ('k') | src/gpu/effects/GrTextureDomain.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698