Searched defs:fEffectStage (Results 1 - 3 of 3) sorted by last modified time

/external/skia/src/gpu/gl/
H A DGrGLShaderBuilder.h279 CodeStage() : fNextIndex(0), fCurrentIndex(-1), fEffectStage(NULL) {}
283 return NULL != fEffectStage;
288 return fEffectStage;
301 fSavedEffectStage = codeStage->fEffectStage;
308 codeStage->fEffectStage = newStage;
314 fCodeStage->fEffectStage = fSavedEffectStage;
322 void validate() const { SkASSERT((NULL == fEffectStage) == (-1 == fCurrentIndex)); }
325 const GrEffectStage* fEffectStage; member in class:GrGLShaderBuilder::CodeStage
/external/skia/include/gpu/
H A DGrDrawEffect.h22 : fEffectStage(&stage)
24 SkASSERT(NULL != fEffectStage);
25 SkASSERT(NULL != fEffectStage->getEffect());
27 const GrEffectRef* effect() const { return fEffectStage->getEffect(); }
36 return fEffectStage->getCoordChangeMatrix();
42 const int* getVertexAttribIndices() const { return fEffectStage->getVertexAttribIndices(); }
43 int getVertexAttribIndexCount() const { return fEffectStage->getVertexAttribIndexCount(); }
46 const GrEffectStage* fEffectStage; member in class:GrDrawEffect
/external/chromium_org/third_party/skia/src/gpu/gl/builders/
H A DGrGLProgramBuilder.h191 CodeStage() : fNextIndex(0), fCurrentIndex(-1), fEffectStage(NULL) {}
195 return SkToBool(fEffectStage);
200 return fEffectStage;
213 fSavedEffectStage = codeStage->fEffectStage;
220 codeStage->fEffectStage = newStage;
226 fCodeStage->fEffectStage = fSavedEffectStage;
234 void validate() const { SkASSERT((NULL == fEffectStage) == (-1 == fCurrentIndex)); }
237 const GrProcessorStage* fEffectStage; member in class:GrGLProgramBuilder::CodeStage

Completed in 133 milliseconds