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