HomeSort by relevance Sort by last modified time
    Searched defs:fEffectRef (Results 1 - 2 of 2) sorted by null

  /external/skia/include/gpu/
GrEffectStage.h 24 : fEffectRef (NULL) {
29 GrSafeUnref(fEffectRef);
35 if (NULL == fEffectRef) {
36 return NULL == other.fEffectRef;
37 } else if (NULL == other.fEffectRef) {
51 GrSafeAssign(fEffectRef, other.fEffectRef);
52 if (NULL != fEffectRef) {
68 GR_DEBUGCODE(mutable SkAutoTUnref<const GrEffectRef> fEffectRef;)
81 GrAssert(NULL == savedCoordChange->fEffectRef.get())
    [all...]
GrEffect.h 177 GrEffect() : fEffectRef(NULL) {};
182 if (NULL == effect->fEffectRef) {
183 effect->fEffectRef = SkNEW_ARGS(GrEffectRef, (effect));
185 effect->fEffectRef->ref();
187 return effect->fEffectRef;
242 void EffectRefDestroyed() { fEffectRef = NULL; }
250 GrEffectRef* fEffectRef;

Completed in 29 milliseconds