Skip to content

Commit 6093145

Browse files
committed
"fix" formatting of auto generated cpp from fp
TBR: egdaniel@google.com Change-Id: I24da4ec120ccc46383f7e8041d78de7ed1e5312c Reviewed-on: https://skia-review.googlesource.com/c/skia/+/260900 Reviewed-by: Brian Salomon <bsalomon@google.com>
1 parent f64e958 commit 6093145

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/gpu/effects/generated/GrAlphaThresholdFragmentProcessor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ GR_DEFINE_FRAGMENT_PROCESSOR_TEST(GrAlphaThresholdFragmentProcessor);
111111
#if GR_TEST_UTILS
112112
std::unique_ptr<GrFragmentProcessor> GrAlphaThresholdFragmentProcessor::TestCreate(
113113
GrProcessorTestData* testData) {
114-
auto [maskProxy, ct, at] = testData->randomAlphaOnlyProxy();
114+
auto[maskProxy, ct, at] = testData->randomAlphaOnlyProxy();
115115
// Make the inner and outer thresholds be in (0, 1) exclusive and be sorted correctly.
116116
float innerThresh = testData->fRandom->nextUScalar1() * .99f + 0.005f;
117117
float outerThresh = testData->fRandom->nextUScalar1() * .99f + 0.005f;

src/gpu/effects/generated/GrMagnifierEffect.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ const GrFragmentProcessor::TextureSampler& GrMagnifierEffect::onTextureSampler(i
178178
GR_DEFINE_FRAGMENT_PROCESSOR_TEST(GrMagnifierEffect);
179179
#if GR_TEST_UTILS
180180
std::unique_ptr<GrFragmentProcessor> GrMagnifierEffect::TestCreate(GrProcessorTestData* d) {
181-
auto [proxy, ct, at] = d->randomProxy();
181+
auto[proxy, ct, at] = d->randomProxy();
182182
const int kMaxWidth = 200;
183183
const int kMaxHeight = 200;
184184
const SkScalar kMaxInset = 20.0f;

src/gpu/effects/generated/GrSimpleTextureEffect.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ GR_DEFINE_FRAGMENT_PROCESSOR_TEST(GrSimpleTextureEffect);
7272
#if GR_TEST_UTILS
7373
std::unique_ptr<GrFragmentProcessor> GrSimpleTextureEffect::TestCreate(
7474
GrProcessorTestData* testData) {
75-
auto [proxy, ct, at] = testData->randomProxy();
75+
auto[proxy, ct, at] = testData->randomProxy();
7676
GrSamplerState::WrapMode wrapModes[2];
7777
GrTest::TestWrapModes(testData->fRandom, wrapModes);
7878
if (!testData->caps()->npotTextureTileSupport()) {

0 commit comments

Comments
 (0)