Home | History | Annotate | Download | only in glshared

Lines Matching defs:att

428 static void attachAttachment (const Attachment& att, GLenum attPoint,
432 dynamic_cast<const RenderbufferAttachment*>(&att))
436 dynamic_cast<const TextureFlatAttachment*>(&att))
440 dynamic_cast<const TextureLayerAttachment*>(&att))
447 GLenum attachmentType (const Attachment& att)
449 if (dynamic_cast<const RenderbufferAttachment*>(&att) != DE_NULL)
451 else if (dynamic_cast<const TextureAttachment*>(&att) != DE_NULL)
635 const Attachment& att = *it->second;
636 const Image* const image = fboConfig.getImage(attachmentType(att), att.imageName);
638 checkAttachmentCompleteness(*cctx, att, attPoint, image, m_formats);
646 void Framebuffer::attach (glw::GLenum attPoint, const Attachment* att)
648 if (att == DE_NULL)
651 attachments[attPoint] = att;
708 static void logAttachment (const Attachment& att, TestLog& log)
710 logField(log, "Target", getFramebufferTargetName(att.target));
711 logField(log, "Type", getFramebufferAttachmentTypeName(attachmentType(att)));
712 logField(log, "Image Name", toString(att.imageName));
714 = dynamic_cast<const RenderbufferAttachment*>(&att))
720 else if (const TextureAttachment* const tAtt = dynamic_cast<const TextureAttachment*>(&att))
962 void FboBuilder::glAttach (GLenum attPoint, const Attachment* att)
964 if (att == NULL)
967 attachAttachment(*att, attPoint, m_gl);
969 attach(attPoint, att);