Home | History | Annotate | Download | only in functional

Lines Matching defs:colorbuffer

356 						Framebuffer			(sglr::Context& context, const FboConfig& config, int width, int height, deUint32 fbo = 0, deUint32 colorbuffer = 0, deUint32 depthbuffer = 0, deUint32 stencilbuffer = 0);
409 Framebuffer::Framebuffer (sglr::Context& context, const FboConfig& config, int width, int height, deUint32 fbo, deUint32 colorbuffer, deUint32 depthbuffer, deUint32 stencilbuffer)
413 , m_colorbuffer (colorbuffer)
1182 : FboRenderCase(context, config.getName().c_str(), "Shared colorbuffer", config)
1209 // Fbo B - don't create colorbuffer
1309 : FboRenderCase(context, config.getName().c_str(), "Shared colorbuffer clears", config)
1324 deUint32 colorbuffer = 1;
1328 // Single colorbuffer
1331 context.bindTexture(GL_TEXTURE_2D, colorbuffer);
1338 context.bindRenderbuffer(GL_RENDERBUFFER, colorbuffer);
1342 // Multiple framebuffers sharing the colorbuffer
1348 context.framebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, colorbuffer, 0);
1350 context.framebufferRenderbuffer(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_RENDERBUFFER, colorbuffer);
2163 createChildGroup<FboCases::SharedColorbufferClearsTest> (this, "shared_colorbuffer_clear", "Shared colorbuffer clears");
2164 createChildGroup<FboCases::SharedColorbufferTest> (this, "shared_colorbuffer", "Shared colorbuffer tests");
2168 createRecreateBuffersGroup<GL_COLOR_BUFFER_BIT> (this, "recreate_colorbuffer", "Recreate colorbuffer tests");
2172 deqp::gles2::TestCaseGroup* texSubImageGroup = new deqp::gles2::TestCaseGroup(m_context, "texsubimage", "TexSubImage interop with FBO colorbuffer texture");