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

  /external/skia/src/gpu/
GrEffect.cpp 63 SK_DEFINE_INST_COUNT(GrEffectRef)
65 GrEffectRef::~GrEffectRef() {
71 void* GrEffectRef::operator new(size_t size) {
75 void GrEffectRef::operator delete(void* target) {
  /external/skia/include/gpu/
GrEffect.h 26 * GrEffectRef ref count reaches zero the scratch GrResources owned by the effect can be recycled
30 class GrEffectRef : public SkRefCnt {
32 SK_DECLARE_INST_COUNT(GrEffectRef);
46 explicit GrEffectRef(GrEffect* effect);
48 virtual ~GrEffectRef();
61 GrEffect subclass objects should be created by factory functions that return GrEffectRef.
62 There is no public way to wrap a GrEffect in a GrEffectRef. Thus, a factory should be a static
65 Because almost no code should ever handle a GrEffect outside of a GrEffectRef, we privately
122 bool isEqual(const GrEffectRef& other) const {
152 keeps the effect alive outside of GrEffectRef while allowing any resources owned by th
    [all...]

Completed in 639 milliseconds