Home | History | Annotate | Download | only in glshared

Lines Matching full:attpoint

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