HomeSort by relevance Sort by last modified time
    Searched refs:fColorStages (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/skia/include/gpu/
GrPaint.h 93 fColorStages.reset();
95 SkNEW_APPEND_TO_TARRAY(&fColorStages, GrProcessorStage, (fp));
120 int numColorStages() const { return fColorStages.count(); }
124 const GrFragmentStage& getColorStage(int s) const { return fColorStages[s]; }
136 fColorStages = paint.fColorStages;
181 for (int i = 0; i < fColorStages.count(); ++i) {
182 fColorStages[i].localCoordChange(oldToNew);
192 for (int i = 0; i < fColorStages.count(); ++i) {
198 fColorStages[i].localCoordChange(oldToNew)
    [all...]
  /external/skia/include/gpu/
GrPaint.h 93 fColorStages.reset();
95 SkNEW_APPEND_TO_TARRAY(&fColorStages, GrEffectStage, (effect, attr0, attr1));
125 int numColorStages() const { return fColorStages.count(); }
129 const GrEffectStage& getColorStage(int s) const { return fColorStages[s]; }
141 fColorStages = paint.fColorStages;
186 for (int i = 0; i < fColorStages.count(); ++i) {
187 fColorStages[i].localCoordChange(oldToNew);
197 for (int i = 0; i < fColorStages.count(); ++i) {
203 fColorStages[i].localCoordChange(oldToNew)
    [all...]
  /external/skia/src/gpu/
GrDrawState.h 56 for (int i = 0; i < fColorStages.count(); ++i) {
57 fColorStages[i].localCoordChange(preConcatMatrix);
345 SkNEW_APPEND_TO_TARRAY(&fColorStages, GrEffectStage, (effect, attr0, attr1));
398 int n = fDrawState->fColorStages.count() - fColorEffectCnt;
400 fDrawState->fColorStages.pop_back_n(n);
408 fColorEffectCnt = ds->fColorStages.count();
422 int numColorStages() const { return fColorStages.count(); }
426 const GrEffectStage& getColorStage(int stageIdx) const { return fColorStages[stageIdx]; }
851 fColorStages.count() != s.fColorStages.count() |
    [all...]
GrDrawState.cpp 12 if (fColorStages.count() || fCoverageStages.count()) {
18 for (int s = 0; s < fColorStages.count(); ++s) {
19 fColorStages[s].localCoordChange(invVM);
32 fColorStages.reset();
36 fColorStages.push_back(paint.getColorStage(i));
150 int totalStages = fColorStages.count() + fCoverageStages.count();
152 int covIdx = s - fColorStages.count();
153 const GrEffectStage& stage = covIdx < 0 ? fColorStages[s] : fCoverageStages[covIdx];
186 for (int s = 0; s < fColorStages.count(); ++s) {
187 if ((*fColorStages[s].getEffect())->willReadDstColor())
    [all...]
GrPaint.cpp 71 count = fColorStages.count();
73 (*fColorStages[i].getEffect())->getConstantColorComponents(&color, &colorComps);
  /external/chromium_org/third_party/skia/src/gpu/
GrDrawState.cpp 84 fColorStages[i].localCoordChange(preConcatMatrix);
115 fColorStages = that.fColorStages;
133 fColorStages.reset();
170 fColorStages[s].localCoordChange(invVM);
185 fColorStages.reset();
189 fColorStages.push_back(paint.getColorStage(i));
339 fDrawState->fColorStages.pop_back_n(m);
377 fDrawState->fColorStages[s].restoreCoordChange(fSavedCoordChanges[i]);
453 fDrawState->fColorStages[s].localCoordChange(coordChangeMatrix)
    [all...]
GrOptDrawState.cpp 95 fColorStages.push_back(this->getCoverageStage(s));
113 fColorStages.reset();
121 fColorStages.reset();
201 fColorStages.reset(&ds.getColorStage(firstColorStage),
204 fColorStages.reset();
GrRODrawState.h 131 int numColorStages() const { return fColorStages.count(); }
140 const GrFragmentStage& getColorStage(int stageIdx) const { return fColorStages[stageIdx]; }
418 FragmentStageArray fColorStages;
GrPaint.cpp 67 count = fColorStages.count();
69 fColorStages[i].getProcessor()->getConstantColorComponents(&color, &colorComps);
GrRODrawState.cpp 27 this->fColorStages.count() != that.fColorStages.count() ||
287 for (int i = 0; i < fColorStages.count(); ++i) {
288 fColorStages[i].convertToPendingExec();
GrDrawState.h 212 SkNEW_APPEND_TO_TARRAY(&fColorStages, GrFragmentStage, (effect));

Completed in 184 milliseconds