Home | History | Annotate | Download | only in glshared

Lines Matching defs:it

245 	// since it was written against ES 1.1.
320 // found in any extension specs, so only allow it, not require it.
441 std::set<std::string>::const_iterator it = requiredExtensions.begin();
446 extName = *it++;
447 while (it != requiredExtensions.end())
450 extName = *it++;
451 msg << (it == requiredExtensions.end() ? " and " : ", ");
473 for (config::TextureMap::const_iterator it = fbo.textures.begin(); it != fbo.textures.end(); ++it)
474 formats.insert(it->second->internalFormat);
475 for (config::RboMap::const_iterator it = fbo.rbos.begin(); it != fbo.rbos.end(); ++it)
476 formats.insert(it->second->internalFormat);
482 for (std::set<ImageFormat>::const_iterator it = formats.begin(); it != formats.end(); ++it)
484 const tcu::ScopedLogSection section(log, "FormatInfo", de::toString(*it));
487 if (isFormatFeatureSupported(ctxFormats, *it, TEXTURE_VALID))
492 if (isFormatFeatureSupported(coreFormats, *it, TEXTURE_VALID))
497 logAffectingExtensions("\t\t- ", ctxFormats, *it, TEXTURE_VALID, msg);
507 if (isFormatFeatureSupported(allFormats, *it, TEXTURE_VALID))
510 logAffectingExtensions("\t\t- ", allFormats, *it, TEXTURE_VALID, msg);
519 if (isFormatFeatureSupported(ctxFormats, *it, RENDERBUFFER_VALID))
524 if (isFormatFeatureSupported(coreFormats, *it, RENDERBUFFER_VALID))
529 logAffectingExtensions("\t\t- ", ctxFormats, *it, RENDERBUFFER_VALID, msg);
539 if (isFormatFeatureSupported(allFormats, *it, RENDERBUFFER_VALID))
542 logAffectingExtensions("\t\t- ", allFormats, *it, RENDERBUFFER_VALID, msg);
553 if (isFormatFeatureSupported(ctxFormats, *it, s_renderability[ndx].flag | REQUIRED_RENDERABLE))
558 if (isFormatFeatureSupported(coreFormats, *it, s_renderability[ndx].flag | REQUIRED_RENDERABLE))
563 logAffectingExtensions("\t\t- ", ctxFormats, *it, s_renderability[ndx].flag | REQUIRED_RENDERABLE, msg);
568 else if (isFormatFeatureSupported(ctxFormats, *it, s_renderability[ndx].flag))
573 if (isFormatFeatureSupported(coreFormats, *it, s_renderability[ndx].flag))
575 else if (isFormatFeatureSupported(allFormats, *it, s_renderability[ndx].flag))
578 logAffectingExtensions("\t\t- ", allFormats, *it, s_renderability[ndx].flag, msg);
590 if (isFormatFeatureSupported(allFormats, *it, s_renderability[ndx].flag))
592 if (isFormatFeatureSupported(allFormats, *it, s_renderability[ndx].flag | REQUIRED_RENDERABLE))
595 logAffectingExtensions("\t\t- ", allFormats, *it, s_renderability[ndx].flag | REQUIRED_RENDERABLE, msg);
600 logAffectingExtensions("\t\t- ", allFormats, *it, s_renderability[ndx].flag, msg);
688 Formats::const_iterator it = formats.begin();
689 if (it == formats.end())
693 it = formats.begin();
695 if (it == formats.end())
698 return *it;
879 Formats::const_iterator it = formats.begin();
880 if (it != formats.end())
882 const ImageFormat format = *it;
987 for (const AttPoint* it = DE_ARRAY_BEGIN(attPoints); it != DE_ARRAY_END(attPoints); it++)
989 TestCaseGroup* const rbAttTests = new TestCaseGroup(m_testCtx, it->name, it->desc);
990 TestCaseGroup* const texAttTests = new TestCaseGroup(m_testCtx, it->name, it->desc);
994 const RenderableParams params = { it->attPoint, GL_RENDERBUFFER, *it2 };
1001 const RenderableParams params = { it->attPoint, GL_TEXTURE, *it2 };