From 91d844de47bdc1c3f807c85293e46943dcfc712d Mon Sep 17 00:00:00 2001 From: bsalomon Date: Mon, 10 Aug 2015 10:47:29 -0700 Subject: Rename GrPipelineInfo to GrPipelineOptimizations TBR=joshualitt@google.com Review URL: https://codereview.chromium.org/1274513005 --- src/gpu/batches/GrAAStrokeRectBatch.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/gpu/batches/GrAAStrokeRectBatch.cpp') diff --git a/src/gpu/batches/GrAAStrokeRectBatch.cpp b/src/gpu/batches/GrAAStrokeRectBatch.cpp index 49329b2a94..fa88fd13df 100644 --- a/src/gpu/batches/GrAAStrokeRectBatch.cpp +++ b/src/gpu/batches/GrAAStrokeRectBatch.cpp @@ -43,20 +43,20 @@ static const GrGeometryProcessor* create_stroke_rect_gp(bool tweakAlphaForCovera } -void GrAAStrokeRectBatch::initBatchTracker(const GrPipelineInfo& init) { +void GrAAStrokeRectBatch::initBatchTracker(const GrPipelineOptimizations& opt) { // Handle any color overrides - if (!init.readsColor()) { + if (!opt.readsColor()) { fGeoData[0].fColor = GrColor_ILLEGAL; } - init.getOverrideColorIfSet(&fGeoData[0].fColor); + opt.getOverrideColorIfSet(&fGeoData[0].fColor); // setup batch properties - fBatch.fColorIgnored = !init.readsColor(); + fBatch.fColorIgnored = !opt.readsColor(); fBatch.fColor = fGeoData[0].fColor; - fBatch.fUsesLocalCoords = init.readsLocalCoords(); - fBatch.fCoverageIgnored = !init.readsCoverage(); + fBatch.fUsesLocalCoords = opt.readsLocalCoords(); + fBatch.fCoverageIgnored = !opt.readsCoverage(); fBatch.fMiterStroke = fGeoData[0].fMiterStroke; - fBatch.fCanTweakAlphaForCoverage = init.canTweakAlphaForCoverage(); + fBatch.fCanTweakAlphaForCoverage = opt.canTweakAlphaForCoverage(); } void GrAAStrokeRectBatch::generateGeometry(GrBatchTarget* batchTarget) { -- cgit v1.2.3