Lines Matching defs:it
124 for (FormatMap::const_iterator it = m_formatFlags.begin(); it != m_formatFlags.end(); it++)
126 if ((it->second & requirements) == requirements)
127 ret.insert(it->first);
150 for (std::set<ExtensionInfo>::const_iterator it = extensionInfo.begin(); it != extensionInfo.end(); ++it)
152 if ((it->flags & requirements) == requirements)
153 ret.insert(it->requiredExtensions);
224 for (const FormatEntry* it = stdFmts.begin(); it != stdFmts.end(); it++)
226 for (const FormatKey* it2 = it->second.begin(); it2 != it->second.end(); it2++)
227 db.addCoreFormat(formatKeyInfo(*it2), it->first);
379 for (const GLenum* it = range.begin(); it != range.end(); it++)
380 glInitFlat(*tcm, *it, gl);
564 * The returned set is guaranteed to be non-empty, but it may contain multiple
578 for (TextureMap::const_iterator it = fboConfig.textures.begin();
579 it != fboConfig.textures.end(); it++)
583 if (m_formats.isKnownFormat(it->second->internalFormat))
585 const FormatFlags flags = m_formats.getFormatInfo(it->second->internalFormat);
588 errorDescription = "Format " + de::toString(it->second->internalFormat) + " is not a valid format for a texture";
590 else if (it->second->internalFormat.unsizedType == GL_NONE)
593 errorDescription = "Format " + de::toString(it->second->internalFormat) + " does not exist";
598 errorDescription = "Format " + de::toString(it->second->internalFormat) + " is not a legal format";
609 for (RboMap::const_iterator it = fboConfig.rbos.begin(); it != fboConfig.rbos.end(); it++)
611 if (m_formats.isKnownFormat(it->second->internalFormat))
613 const FormatFlags flags = m_formats.getFormatInfo(it->second->internalFormat);
616 const std::string reason = "Format " + de::toString(it->second->internalFormat) + " is not a valid format for a renderbuffer";
622 const std::string reason = "Internal format " + de::toString(it->second->internalFormat) + " does not exist";
632 for (AttachmentMap::const_iterator it = atts.begin(); it != atts.end(); it++)
634 const GLenum attPoint = it->first;
635 const Attachment& att = *it->second;
639 cctx->check(it->first, *it->second, image);
736 for (RboMap::const_iterator it = cfg.rbos.begin(); it != cfg.rbos.end(); ++it)
738 const string num = toString(it->first);
741 logRenderbuffer(*it->second, log);
744 for (TextureMap::const_iterator it = cfg.textures.begin();
745 it != cfg.textures.end(); ++it)
747 const string num = toString(it->first);
750 logTexture(*it->second, log);
757 for (AttachmentMap::const_iterator it = cfg.attachments.begin();
758 it != cfg.attachments.end(); it++)
760 const string attPointName = getFramebufferAttachmentName(it->first);
762 logAttachment(*it->second, log);
901 for (std::set<std::string>::const_iterator it = rules.begin(); it != rules.end(); ++it)
902 msg << "\t * " << *it << "\n";
940 for (TextureMap::const_iterator it = textures.begin(); it != textures.end(); it++)
942 glDelete(*it->second, it->first, m_gl);
944 for (RboMap::const_iterator it = rbos.begin(); it != rbos.end(); it++)
946 glDelete(*it->second, it->first, m_gl);
949 for (Configs::const_iterator it = m_configs.begin(); it != m_configs.end(); it++)
951 delete *it;