Lines Matching refs:attPoint
428 static void attachAttachment (const Attachment& att, GLenum attPoint, in attachAttachment() argument
433 gl.framebufferRenderbuffer(rAtt->target, attPoint, in attachAttachment()
437 gl.framebufferTexture2D(fAtt->target, attPoint, in attachAttachment()
441 gl.framebufferTextureLayer(lAtt->target, attPoint, in attachAttachment()
471 GLenum attPoint, const Image* image, in checkAttachmentCompleteness() argument
507 if ((flags & getAttachmentRenderabilityFlag(attPoint)) == 0) in checkAttachmentCompleteness()
634 const GLenum attPoint = it->first; in validStatusCodes() local
638 checkAttachmentCompleteness(*cctx, att, attPoint, image, m_formats); in validStatusCodes()
646 void Framebuffer::attach (glw::GLenum attPoint, const Attachment* att) in attach() argument
649 attachments.erase(attPoint); in attach()
651 attachments[attPoint] = att; in attach()
962 void FboBuilder::glAttach (GLenum attPoint, const Attachment* att) in glAttach() argument
965 m_gl.framebufferRenderbuffer(m_target, attPoint, GL_RENDERBUFFER, 0); in glAttach()
967 attachAttachment(*att, attPoint, m_gl); in glAttach()
969 attach(attPoint, att); in glAttach()