Home | History | Annotate | Download | only in glshared

Lines Matching refs:Framebuffer

21  * \brief Utilities for framebuffer objects.
474 // GLES2 4.4.5 / GLES3 4.4.4, "Framebuffer attachment completeness"
557 * \brief Return acceptable framebuffer status codes.
559 * This function examines the framebuffer configuration descriptor `fboConfig`
561 * allowed to return on a conforming implementation when given a framebuffer
568 * indicate that trying to create a framebuffer configuration like this could
573 ValidStatusCodes FboVerifier::validStatusCodes (const Framebuffer& fboConfig) const
627 // "There is at least one image attached to the framebuffer."
630 cctx->addFBOStatus(GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT, "No images attached to the framebuffer");
646 void Framebuffer::attach (glw::GLenum attPoint, const Attachment* att)
654 const Image* Framebuffer::getImage (GLenum type, glw::GLuint imgName) const
668 void Framebuffer::setTexture (glw::GLuint texName, const Texture& texCfg)
673 void Framebuffer::setRbo (glw::GLuint rbName, const Renderbuffer& rbCfg)
732 void logFramebufferConfig (const Framebuffer& cfg, TestLog& log)
734 log << TestLog::Section("Framebuffer", "Framebuffer configuration");
754 ? "Framebuffer has no attachments"
755 : "Framebuffer attachments";
767 log << TestLog::EndSection; // Framebuffer