OLD | NEW |
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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 GrTextureParams params(tileModes, d->fRandom->nextBool() ? GrTextureParams::
kBilerp_FilterMode : | 61 GrTextureParams params(tileModes, d->fRandom->nextBool() ? GrTextureParams::
kBilerp_FilterMode : |
62 GrTextureParams::
kNone_FilterMode); | 62 GrTextureParams::
kNone_FilterMode); |
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::Make(d->fTextures[texIdx], matrix, coordSet); | 71 return GrSimpleTextureEffect::Make(d->fTextures[texIdx], nullptr, matrix, co
ordSet); |
72 } | 72 } |
OLD | NEW |