Home | History | Annotate | Download | only in gl

Lines Matching defs:GrGLEffect

21     include/gpu/GrEffect.h. Objects of type GrGLEffect are responsible for emitting the
31 class GrGLEffect {
44 GrGLEffect(const GrBackendEffectFactory&);
46 virtual ~GrGLEffect();
69 GrGLEffect. These can be passed to the builder to emit texture
80 /** A GrGLEffect instance can be reused with any GrEffect that produces the same stage
83 guaranteed to be of the same type that created this GrGLEffect and to have an identical
84 EffectKey as the one that created this GrGLEffect. */
92 * GrGLEffect subclasses get passed a GrEffectStage in their emitCode and setData functions.
93 * The GrGLEffect usually needs to cast the stage's effect to the GrEffect subclass that
94 * generated the GrGLEffect. This helper does just that.
104 * in a GrGLEffect subclass's constructor (which takes const GrEffectRef&).