Lines Matching refs:m_config
325 const FboConfig& getConfig (void) const { return m_config; } in getConfig()
329 FboConfig m_config; member in deqp::gles2::Functional::FboIncompleteException
348 , m_config(config) in FboIncompleteException()
359 const FboConfig& getConfig (void) const { return m_config; } in getConfig()
371 FboConfig m_config; member in deqp::gles2::Functional::Framebuffer
410 : m_config (config) in Framebuffer()
424 switch (m_config.colorbufferType) in Framebuffer()
430 context.texImage2D(GL_TEXTURE_2D, 0, m_config.colorbufferFormat, width, height); in Framebuffer()
448 createRbo(m_colorbuffer, m_config.colorbufferFormat, width, height); in Framebuffer()
453 DE_ASSERT(m_config.colorbufferType == GL_NONE); in Framebuffer()
457 if (m_config.depthbufferType == GL_RENDERBUFFER) in Framebuffer()
459 createRbo(m_depthbuffer, m_config.depthbufferFormat, width, height); in Framebuffer()
463 DE_ASSERT(m_config.depthbufferType == GL_NONE); in Framebuffer()
465 if (m_config.stencilbufferType == GL_RENDERBUFFER) in Framebuffer()
467 createRbo(m_stencilbuffer, m_config.stencilbufferFormat, width, height); in Framebuffer()
471 DE_ASSERT(m_config.stencilbufferType == GL_NONE); in Framebuffer()
479 destroyBuffer(m_colorbuffer, m_config.colorbufferType); in ~Framebuffer()
480 destroyBuffer(m_depthbuffer, m_config.depthbufferType); in ~Framebuffer()
481 destroyBuffer(m_stencilbuffer, m_config.stencilbufferType); in ~Framebuffer()
490 throw FboIncompleteException(m_config, status, __FILE__, __LINE__); in checkCompleteness()
544 const FboConfig& getConfig (void) const { return m_config; } in getConfig()
549 FboConfig m_config; member in deqp::gles2::Functional::FboRenderCase
554 , m_config(config) in FboRenderCase()