Lines Matching refs:boundFboProps_const
1491 const FboProps& props = boundFboProps_const(target); in getBoundFramebufferFormat()
1666 const FboProps& GLClientState::boundFboProps_const(GLenum target) const { in boundFboProps_const() function in GLClientState
1725 return boundFboProps_const(target).name; in boundFramebuffer()
1769 res = boundFboProps_const(target).colorAttachmenti_textures[colorAttachmentIndex]; in getFboAttachmentTextureId()
1774 res = boundFboProps_const(target).depthAttachment_texture; in getFboAttachmentTextureId()
1777 res = boundFboProps_const(target).stencilAttachment_texture; in getFboAttachmentTextureId()
1780 res = boundFboProps_const(target).depthstencilAttachment_texture; in getFboAttachmentTextureId()
1888 res = boundFboProps_const(target).colorAttachmenti_rbos[colorAttachmentIndex]; in getFboAttachmentRboId()
1893 res = boundFboProps_const(target).depthAttachment_rbo; in getFboAttachmentRboId()
1896 res = boundFboProps_const(target).stencilAttachment_rbo; in getFboAttachmentRboId()
1899 res = boundFboProps_const(target).depthstencilAttachment_rbo; in getFboAttachmentRboId()
1912 res = boundFboProps_const(target).colorAttachmenti_hasTex[colorAttachmentIndex] || in attachmentHasObject()
1913 boundFboProps_const(target).colorAttachmenti_hasRbo[colorAttachmentIndex]; in attachmentHasObject()
1918 res = (boundFboProps_const(target).depthAttachment_hasTexObj) || in attachmentHasObject()
1919 (boundFboProps_const(target).depthAttachment_hasRbo); in attachmentHasObject()
1922 res = (boundFboProps_const(target).stencilAttachment_hasTexObj) || in attachmentHasObject()
1923 (boundFboProps_const(target).stencilAttachment_hasRbo); in attachmentHasObject()
1926 res = (boundFboProps_const(target).depthstencilAttachment_hasTexObj) || in attachmentHasObject()
1927 (boundFboProps_const(target).depthstencilAttachment_hasRbo); in attachmentHasObject()
1934 const FboProps& props = boundFboProps_const(target); in objectOfAttachment()