Home | History | Annotate | Download | only in glshared

Lines Matching refs:attPoint

271 static void attachAttachment (const Attachment& att, GLenum attPoint,
276 gl.framebufferRenderbuffer(rAtt->target, attPoint,
280 gl.framebufferTexture2D(fAtt->target, attPoint,
284 gl.framebufferTextureLayer(lAtt->target, attPoint,
314 GLenum attPoint, const Image* image,
346 cctx.require((flags & formatFlag(attPoint)) != 0, GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT);
422 const GLenum attPoint = it->first;
425 checkAttachmentCompleteness(*cctx, att, attPoint, image, m_formats);
433 void Framebuffer::attach (glw::GLenum attPoint, const Attachment* att)
436 attachments.erase(attPoint);
438 attachments[attPoint] = att;
599 void FboBuilder::glAttach (GLenum attPoint, const Attachment* att)
602 m_gl.framebufferRenderbuffer(m_target, attPoint, GL_RENDERBUFFER, 0);
604 attachAttachment(*att, attPoint, m_gl);
606 attach(attPoint, att);