Home | History | Annotate | Download | only in gpu

Lines Matching full:that

4  * Use of this source code is governed by a BSD-style license that can be
14 GrPaint::GrPaint(const GrPaint& that)
15 : fXPFactory(that.fXPFactory)
16 , fColorFragmentProcessors(that.fColorFragmentProcessors.count())
17 , fCoverageFragmentProcessors(that.fCoverageFragmentProcessors.count())
18 , fDisableOutputConversionToSRGB(that.fDisableOutputConversionToSRGB)
19 , fAllowSRGBInputs(that.fAllowSRGBInputs)
20 , fTrivial(that.fTrivial)
21 , fColor(that.fColor) {
22 for (int i = 0; i < that.fColorFragmentProcessors.count(); ++i) {
23 fColorFragmentProcessors.push_back(that.fColorFragmentProcessors[i]->clone());
26 for (int i = 0; i < that.fCoverageFragmentProcessors.count(); ++i) {
27 fCoverageFragmentProcessors.push_back(that.fCoverageFragmentProcessors[i]->clone());