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

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

Issue 1443743002: Rename some processor functions from GL to GLSL (Closed) Base URL: https://skia.googlesource.com/skia.git@primProcs
Patch Set: nits Created 5 years, 1 month 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/GrSimpleTextureEffect.h ('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"
(...skipping 18 matching lines...) Expand all
29 private: 29 private:
30 typedef GrGLSLFragmentProcessor INHERITED; 30 typedef GrGLSLFragmentProcessor INHERITED;
31 }; 31 };
32 32
33 /////////////////////////////////////////////////////////////////////////////// 33 ///////////////////////////////////////////////////////////////////////////////
34 34
35 void GrSimpleTextureEffect::onComputeInvariantOutput(GrInvariantOutput* inout) c onst { 35 void GrSimpleTextureEffect::onComputeInvariantOutput(GrInvariantOutput* inout) c onst {
36 this->updateInvariantOutputForModulation(inout); 36 this->updateInvariantOutputForModulation(inout);
37 } 37 }
38 38
39 void GrSimpleTextureEffect::onGetGLProcessorKey(const GrGLSLCaps& caps, 39 void GrSimpleTextureEffect::onGetGLSLProcessorKey(const GrGLSLCaps& caps,
40 GrProcessorKeyBuilder* b) const { 40 GrProcessorKeyBuilder* b) cons t {
41 GrGLSimpleTextureEffect::GenKey(*this, caps, b); 41 GrGLSimpleTextureEffect::GenKey(*this, caps, b);
42 } 42 }
43 43
44 GrGLSLFragmentProcessor* GrSimpleTextureEffect::onCreateGLInstance() const { 44 GrGLSLFragmentProcessor* GrSimpleTextureEffect::onCreateGLSLInstance() const {
45 return new GrGLSimpleTextureEffect(*this); 45 return new GrGLSimpleTextureEffect(*this);
46 } 46 }
47 47
48 /////////////////////////////////////////////////////////////////////////////// 48 ///////////////////////////////////////////////////////////////////////////////
49 49
50 GR_DEFINE_FRAGMENT_PROCESSOR_TEST(GrSimpleTextureEffect); 50 GR_DEFINE_FRAGMENT_PROCESSOR_TEST(GrSimpleTextureEffect);
51 51
52 const GrFragmentProcessor* GrSimpleTextureEffect::TestCreate(GrProcessorTestData * d) { 52 const GrFragmentProcessor* GrSimpleTextureEffect::TestCreate(GrProcessorTestData * d) {
53 int texIdx = d->fRandom->nextBool() ? GrProcessorUnitTest::kSkiaPMTextureIdx : 53 int texIdx = d->fRandom->nextBool() ? GrProcessorUnitTest::kSkiaPMTextureIdx :
54 GrProcessorUnitTest::kAlphaTextureIdx; 54 GrProcessorUnitTest::kAlphaTextureIdx;
(...skipping 11 matching lines...) Expand all
66 66
67 static const GrCoordSet kCoordSets[] = { 67 static const GrCoordSet kCoordSets[] = {
68 kLocal_GrCoordSet, 68 kLocal_GrCoordSet,
69 kDevice_GrCoordSet 69 kDevice_GrCoordSet
70 }; 70 };
71 GrCoordSet coordSet = kCoordSets[d->fRandom->nextULessThan(SK_ARRAY_COUNT(kC oordSets))]; 71 GrCoordSet coordSet = kCoordSets[d->fRandom->nextULessThan(SK_ARRAY_COUNT(kC oordSets))];
72 72
73 const SkMatrix& matrix = GrTest::TestMatrix(d->fRandom); 73 const SkMatrix& matrix = GrTest::TestMatrix(d->fRandom);
74 return GrSimpleTextureEffect::Create(d->fTextures[texIdx], matrix, coordSet) ; 74 return GrSimpleTextureEffect::Create(d->fTextures[texIdx], matrix, coordSet) ;
75 } 75 }
OLDNEW
« no previous file with comments | « src/gpu/effects/GrSimpleTextureEffect.h ('k') | src/gpu/effects/GrTextureDomain.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698