Home | History | Annotate | Download | only in glshared

Lines Matching refs:Attacher

209 class Attacher : public ContextWrapper
220 virtual ~Attacher (void) {}
223 Attacher (const Context& ctx,
237 Attacher& getAttacher (void) const { return m_attacher; }
240 InputAttacher (Attacher& attacher)
241 : ContextWrapper (attacher.getContext())
242 , m_attacher (attacher) {}
243 Attacher& m_attacher;
249 Attacher& getAttacher (void) const { return m_attacher; }
253 OutputAttacher (Attacher& attacher)
254 : ContextWrapper (attacher.getContext())
255 , m_attacher (attacher) {}
256 Attacher& m_attacher;
266 const vector<Attacher*>& getAttachers (void) { return m_attachers; }
273 vector<Attacher*> m_attachers;
278 class FboAttacher : public Attacher
286 : Attacher (ctx, elementType, containerType) {}
293 FboInputAttacher (FboAttacher& attacher)
294 : InputAttacher (attacher) {}
301 FboOutputAttacher (FboAttacher& attacher)
302 : OutputAttacher (attacher) {}
331 class ShaderProgramAttacher : public Attacher
336 : Attacher (ctx, elementType, containerType) {}
347 ShaderProgramInputAttacher (Attacher& attacher)
348 : InputAttacher (attacher) {}
414 using details::Attacher;