Home | History | Annotate | Download | only in glshared

Lines Matching full:cctx

470 static void checkAttachmentCompleteness (Checker& cctx, const Attachment& attachment,
493 cctx.addFBOStatus(GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT, "Attached layer index is larger than present");
498 cctx.addFBOStatus(GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT, "Width and height of an image are not non-zero");
508 cctx.addFBOStatus(GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT, "Attachment format is not renderable in this attachment");
511 cctx.addPotentialFBOStatus(GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT, "Attachment format is not required renderable");
514 cctx.addFBOStatus(GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT, "Attachment format is not legal");
576 const UniquePtr<Checker> cctx(m_factory.createChecker(m_renderCtx));
603 cctx->addGLError(GL_INVALID_ENUM, errorDescription.c_str());
604 cctx->addGLError(GL_INVALID_OPERATION, errorDescription.c_str());
605 cctx->addGLError(GL_INVALID_VALUE, errorDescription.c_str());
617 cctx->addGLError(GL_INVALID_ENUM, reason.c_str());
623 cctx->addGLError(GL_INVALID_ENUM, reason.c_str());
630 cctx->addFBOStatus(GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT, "No images attached to the framebuffer");
638 checkAttachmentCompleteness(*cctx, att, attPoint, image, m_formats);
639 cctx->check(it->first, *it->second, image);
642 return cctx->getStatusCodes();