OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 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 "GrDrawBatch.h" | 8 #include "GrDrawBatch.h" |
9 | 9 |
10 GrDrawBatch::GrDrawBatch(uint32_t classID) : INHERITED(classID), fPipelineInstal
led(false) { } | 10 GrDrawBatch::GrDrawBatch(uint32_t classID) : INHERITED(classID), fPipelineInstal
led(false) { } |
11 | 11 |
12 GrDrawBatch::~GrDrawBatch() { | 12 GrDrawBatch::~GrDrawBatch() { |
13 if (fPipelineInstalled) { | 13 if (fPipelineInstalled) { |
14 this->pipeline()->~GrPipeline(); | 14 this->pipeline()->~GrPipeline(); |
15 } | 15 } |
16 } | 16 } |
17 | 17 |
18 void GrDrawBatch::getPipelineOptimizations(GrPipelineOptimizations* opt) const { | 18 void GrDrawBatch::getPipelineOptimizations(GrPipelineOptimizations* opt) const { |
19 GrInitInvariantOutput color; | 19 GrInitInvariantOutput color; |
20 GrInitInvariantOutput coverage; | 20 GrInitInvariantOutput coverage; |
21 opt->fOverrides.fUsePLSDstRead = false; | |
22 this->computePipelineOptimizations(&color, &coverage, &opt->fOverrides); | 21 this->computePipelineOptimizations(&color, &coverage, &opt->fOverrides); |
23 opt->fColorPOI.initUsingInvariantOutput(color); | 22 opt->fColorPOI.initUsingInvariantOutput(color); |
24 opt->fCoveragePOI.initUsingInvariantOutput(coverage); | 23 opt->fCoveragePOI.initUsingInvariantOutput(coverage); |
25 } | 24 } |
26 | 25 |
27 bool GrDrawBatch::installPipeline(const GrPipeline::CreateArgs& args) { | 26 bool GrDrawBatch::installPipeline(const GrPipeline::CreateArgs& args) { |
28 GrXPOverridesForBatch overrides; | 27 GrXPOverridesForBatch overrides; |
29 void* location = fPipelineStorage.get(); | 28 void* location = fPipelineStorage.get(); |
30 if (!GrPipeline::CreateAt(location, args, &overrides)) { | 29 if (!GrPipeline::CreateAt(location, args, &overrides)) { |
31 return false; | 30 return false; |
32 } | 31 } |
33 this->initBatchTracker(overrides); | 32 this->initBatchTracker(overrides); |
34 fPipelineInstalled = true; | 33 fPipelineInstalled = true; |
35 return true; | 34 return true; |
36 } | 35 } |
OLD | NEW |