blob: 3abf2ceba1d9a092442db0ff353489013383598d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/*
* Copyright 2015 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "GrDrawOp.h"
GrDrawOp::GrDrawOp(uint32_t classID) : INHERITED(classID), fPipelineInstalled(false) { }
GrDrawOp::~GrDrawOp() {
if (fPipelineInstalled) {
this->pipeline()->~GrPipeline();
}
}
void GrDrawOp::getPipelineOptimizations(GrPipelineOptimizations* opt) const {
GrInitInvariantOutput color;
GrInitInvariantOutput coverage;
this->computePipelineOptimizations(&color, &coverage, &opt->fOverrides);
opt->fColorPOI.initUsingInvariantOutput(color);
opt->fCoveragePOI.initUsingInvariantOutput(coverage);
}
bool GrDrawOp::installPipeline(const GrPipeline::CreateArgs& args) {
GrXPOverridesForBatch overrides;
void* location = fPipelineStorage.get();
if (!GrPipeline::CreateAt(location, args, &overrides)) {
return false;
}
fPipelineInstalled = true;
this->initBatchTracker(overrides);
return true;
}
|