Lines Matching defs:framebuffer
2003 /** Prepare framebuffer with texture used as attachment
2005 * @param framebuffer Framebuffer
2008 void GLSLTestBase::prepareFramebuffer(Utils::framebuffer& framebuffer, Utils::texture& color_texture) const
2010 framebuffer.generate();
2014 framebuffer.attachTexture(GL_COLOR_ATTACHMENT0, color_texture.m_id, m_color_texture_width, m_color_texture_height);
2016 framebuffer.clearColor(0.0f, 0.0f, 0.0f, 0.0f);
2017 framebuffer.clear(GL_COLOR_BUFFER_BIT);
2022 * @param framebuffer Framebuffer
2141 Utils::framebuffer framebuffer(m_context);
2211 /* Prepare framebuffer */
2212 prepareFramebuffer(framebuffer, color_tex);
17771 Utils::framebuffer::framebuffer(deqp::Context& context) : m_id(0), m_context(context)
17779 Utils::framebuffer::~framebuffer()
17797 void Utils::framebuffer::attachTexture(glw::GLenum attachment, glw::GLuint texture_id, glw::GLuint width,
17814 /** Binds framebuffer to DRAW_FRAMEBUFFER
17817 void Utils::framebuffer::bind()
17825 /** Clear framebuffer
17829 void Utils::framebuffer::clear(glw::GLenum mask)
17844 void Utils::framebuffer::clearColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha)
17852 /** Generate framebuffer
17855 void Utils::framebuffer::generate()