Lines Matching refs:boundFboProps_const

1205     const FboProps& props = boundFboProps_const(target);  in getBoundFramebufferFormat()
1380 const FboProps& GLClientState::boundFboProps_const(GLenum target) const { in boundFboProps_const() function in GLClientState
1439 return boundFboProps_const(target).name; in boundFramebuffer()
1483 res = boundFboProps_const(target).colorAttachmenti_textures[colorAttachmentIndex]; in getFboAttachmentTextureId()
1488 res = boundFboProps_const(target).depthAttachment_texture; in getFboAttachmentTextureId()
1491 res = boundFboProps_const(target).stencilAttachment_texture; in getFboAttachmentTextureId()
1494 res = boundFboProps_const(target).depthstencilAttachment_texture; in getFboAttachmentTextureId()
1602 res = boundFboProps_const(target).colorAttachmenti_rbos[colorAttachmentIndex]; in getFboAttachmentRboId()
1607 res = boundFboProps_const(target).depthAttachment_rbo; in getFboAttachmentRboId()
1610 res = boundFboProps_const(target).stencilAttachment_rbo; in getFboAttachmentRboId()
1613 res = boundFboProps_const(target).depthstencilAttachment_rbo; in getFboAttachmentRboId()
1626 res = boundFboProps_const(target).colorAttachmenti_hasTex[colorAttachmentIndex] || in attachmentHasObject()
1627 boundFboProps_const(target).colorAttachmenti_hasRbo[colorAttachmentIndex]; in attachmentHasObject()
1632 res = (boundFboProps_const(target).depthAttachment_hasTexObj) || in attachmentHasObject()
1633 (boundFboProps_const(target).depthAttachment_hasRbo); in attachmentHasObject()
1636 res = (boundFboProps_const(target).stencilAttachment_hasTexObj) || in attachmentHasObject()
1637 (boundFboProps_const(target).stencilAttachment_hasRbo); in attachmentHasObject()
1640 res = (boundFboProps_const(target).depthstencilAttachment_hasTexObj) || in attachmentHasObject()
1641 (boundFboProps_const(target).depthstencilAttachment_hasRbo); in attachmentHasObject()
1648 const FboProps& props = boundFboProps_const(target); in objectOfAttachment()