Lines Matching refs:renderbuffer
1788 void GLClientState::detachRbo(GLuint renderbuffer) { in detachRbo() argument
1790 detachRboFromFbo(GL_DRAW_FRAMEBUFFER, glUtilsColorAttachmentName(i), renderbuffer); in detachRbo()
1791 detachRboFromFbo(GL_READ_FRAMEBUFFER, glUtilsColorAttachmentName(i), renderbuffer); in detachRbo()
1794 detachRboFromFbo(GL_DRAW_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, renderbuffer); in detachRbo()
1795 detachRboFromFbo(GL_READ_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, renderbuffer); in detachRbo()
1797 detachRboFromFbo(GL_DRAW_FRAMEBUFFER, GL_STENCIL_ATTACHMENT, renderbuffer); in detachRbo()
1798 detachRboFromFbo(GL_READ_FRAMEBUFFER, GL_STENCIL_ATTACHMENT, renderbuffer); in detachRbo()
1800 detachRboFromFbo(GL_DRAW_FRAMEBUFFER, GL_DEPTH_STENCIL_ATTACHMENT, renderbuffer); in detachRbo()
1801 detachRboFromFbo(GL_READ_FRAMEBUFFER, GL_DEPTH_STENCIL_ATTACHMENT, renderbuffer); in detachRbo()
1804 void GLClientState::detachRboFromFbo(GLenum target, GLenum attachment, GLuint renderbuffer) { in detachRboFromFbo() argument
1810 boundFboProps(target).colorAttachmenti_rbos[colorAttachmentIndex] == renderbuffer) { in detachRboFromFbo()
1818 if (boundFboProps(target).depthAttachment_rbo == renderbuffer && in detachRboFromFbo()
1825 if (boundFboProps(target).stencilAttachment_rbo == renderbuffer && in detachRboFromFbo()
1832 if (boundFboProps(target).depthAttachment_rbo == renderbuffer && in detachRboFromFbo()
1837 if (boundFboProps(target).stencilAttachment_rbo == renderbuffer && in detachRboFromFbo()
1842 if (boundFboProps(target).depthstencilAttachment_rbo == renderbuffer && in detachRboFromFbo()
1851 void GLClientState::attachRbo(GLenum target, GLenum attachment, GLuint renderbuffer) { in attachRbo() argument
1857 boundFboProps(target).colorAttachmenti_rbos[colorAttachmentIndex] = renderbuffer; in attachRbo()
1863 boundFboProps(target).depthAttachment_rbo = renderbuffer; in attachRbo()
1867 boundFboProps(target).stencilAttachment_rbo = renderbuffer; in attachRbo()
1871 boundFboProps(target).depthAttachment_rbo = renderbuffer; in attachRbo()
1873 boundFboProps(target).stencilAttachment_rbo = renderbuffer; in attachRbo()
1875 boundFboProps(target).depthstencilAttachment_rbo = renderbuffer; in attachRbo()