Home | History | Annotate | Download | only in glshared

Lines Matching refs:formats

86 	// Same as ES2 RBO formats, plus RGBA8 (even without OES_rgb8_rgba8)
319 // formats, at least, should be color-renderable. Still, that cannot be
337 // The depth-renderability of the depth RBO formats is not explicitly
338 // spelled out, but all renderbuffer formats are meant to be renderable.
471 std::set<ImageFormat> formats;
474 formats.insert(it->second->internalFormat);
476 formats.insert(it->second->internalFormat);
478 if (!formats.empty())
482 for (std::set<ImageFormat>::const_iterator it = formats.begin(); it != formats.end(); ++it)
686 Formats formats = m_ctx.getCoreFormats().getFormats(formatFlag(attPoint) |
688 Formats::const_iterator it = formats.begin();
689 if (it == formats.end())
691 formats = m_ctx.getCtxFormats().getFormats(formatFlag(attPoint) |
693 it = formats.begin();
695 if (it == formats.end())
878 const Formats& formats = m_ctx.getCoreFormats().getFormats(flags);
879 Formats::const_iterator it = formats.begin();
880 if (it != formats.end())
963 m_testCtx, "renderable", "Tests for support of renderable image formats");
966 m_testCtx, "renderbuffer", "Tests for renderbuffer formats");
969 m_testCtx, "texture", "Tests for texture formats");
982 // At each attachment point, iterate through all the possible formats to
984 const Formats rboFmts = m_allFormats.getFormats(ANY_FORMAT);
985 const Formats texFmts = m_allFormats.getFormats(ANY_FORMAT);
992 for (Formats::const_iterator it2 = rboFmts.begin(); it2 != rboFmts.end(); it2++)
999 for (Formats::const_iterator it2 = texFmts.begin(); it2 != texFmts.end(); it2++)