Home | History | Annotate | Download | only in glshared

Lines Matching refs:Attacher

882 															 Attacher&		attacher,
884 : TestBase (name, description, attacher.getContext())
885 , m_attacher (attacher)
894 Attacher& m_attacher;
904 GLuint getAttachment (Attacher& attacher, GLuint container)
906 const GLuint queriedAttachment = attacher.getAttachment(container);
907 attacher.log() << TestLog::Message
908 << "// Result of query for " << attacher.getElementType().getName()
909 << " attached to " << attacher.getContainerType().getName() << " "
987 Attacher& attacher = m_inputAttacher.getAttacher();
988 Type& containerType = attacher.getContainerType();
989 Type& elementType = attacher.getElementType();
1010 attacher.initAttachment(refSeed, elementId);
1011 attacher.attach(elementId, *container);
1022 attacher.initAttachment(newSeed, newId);
1025 attacher.detach(elementId, *container);
1027 attacher.attach(newId, *container);
1029 attacher.detach(newId, *container);
1068 Attacher& attacher = m_outputAttacher.getAttacher();
1069 Type& containerType = attacher.getContainerType();
1070 Type& elementType = attacher.getElementType();
1091 attacher.initAttachment(0, elementId);
1092 attacher.attach(elementId, *container);
1111 attacher.initAttachment(newSeed, newId);
1123 attacher.detach(elementId, *container);
1175 string attacherName (Attacher& attacher)
1178 os << attacher.getElementType().getName() << "_" << attacher.getContainerType().getName();
1210 const vector<Attacher*>& atts = types.getAttachers();
1211 for (vector<Attacher*>::const_iterator it = atts.begin(); it != atts.end(); ++it)