Lines Matching refs:Attacher
879 Attacher& attacher,
881 : TestBase (name, description, attacher.getContext())
882 , m_attacher (attacher)
891 Attacher& m_attacher;
901 GLuint getAttachment (Attacher& attacher, GLuint container)
903 const GLuint queriedAttachment = attacher.getAttachment(container);
904 attacher.log() << TestLog::Message
905 << "// Result of query for " << attacher.getElementType().getName()
906 << " attached to " << attacher.getContainerType().getName() << " "
984 Attacher& attacher = m_inputAttacher.getAttacher();
985 Type& containerType = attacher.getContainerType();
986 Type& elementType = attacher.getElementType();
1007 attacher.initAttachment(refSeed, elementId);
1008 attacher.attach(elementId, *container);
1019 attacher.initAttachment(newSeed, newId);
1022 attacher.detach(elementId, *container);
1024 attacher.attach(newId, *container);
1026 attacher.detach(newId, *container);
1065 Attacher& attacher = m_outputAttacher.getAttacher();
1066 Type& containerType = attacher.getContainerType();
1067 Type& elementType = attacher.getElementType();
1088 attacher.initAttachment(0, elementId);
1089 attacher.attach(elementId, *container);
1108 attacher.initAttachment(newSeed, newId);
1120 attacher.detach(elementId, *container);
1172 string attacherName (Attacher& attacher)
1175 os << attacher.getElementType().getName() << "_" << attacher.getContainerType().getName();
1207 const vector<Attacher*>& atts = types.getAttachers();
1208 for (vector<Attacher*>::const_iterator it = atts.begin(); it != atts.end(); ++it)