Lines Matching defs:format

252 	GLenum					colorbufferFormat;		//!< Internal format for color buffer texture or renderbuffer
261 static const char* getFormatName (GLenum format);
264 const char* FboConfig::getFormatName (GLenum format)
266 switch (format)
368 void createRbo (deUint32& name, GLenum format, int width, int height);
417 // Verify that color format is supported
493 void Framebuffer::createRbo (deUint32& name, GLenum format, int width, int height)
498 m_context.renderbufferStorage(GL_RENDERBUFFER, format, width, height);
511 static void createMetaballsTex2D (sglr::Context& context, deUint32 name, GLenum format, GLenum dataType, int width, int height)
513 tcu::TextureFormat texFormat = glu::mapGLTransferFormat(format, dataType);
519 context.texImage2D(GL_TEXTURE_2D, 0, format, width, height, 0, format, dataType, level.getAccess().getDataPtr());
523 static void createQuadsTex2D (sglr::Context& context, deUint32 name, GLenum format, GLenum dataType, int width, int height)
525 tcu::TextureFormat texFormat = glu::mapGLTransferFormat(format, dataType);
531 context.texImage2D(GL_TEXTURE_2D, 0, format, width, height, 0, format, dataType, level.getAccess().getDataPtr());
717 // clear alpha channel for GL_RGB5_A1 format because test
1072 // clear alpha channel for GL_RGB5_A1 format because test
1999 static FboConfig makeConfig (deUint32 format)
2003 cfg.colorbufferFormat = format;
2010 RepeatedClearCase (Context& context, deUint32 format)
2011 : FboRenderCase(context, makeConfig(format).getName().c_str(), "Repeated clears", makeConfig(format))
2097 GLenum format;
2133 config.colorbufferFormat = colorbufferConfigs[colorbufferNdx].format;
2135 config.depthbufferFormat = depthbufferConfigs[depthbufferNdx].format;
2137 config.stencilbufferFormat = stencilbufferConfigs[stencilbufferNdx].format;