• Home
  • Raw
  • Download

Lines Matching refs:boundFboProps_const

2221     const FboProps& props = boundFboProps_const(target);  in getBoundFramebufferFormat()
2456 const FboProps& GLClientState::boundFboProps_const(GLenum target) const { in boundFboProps_const() function in gfxstream::guest::GLClientState
2528 return boundFboProps_const(target).name; in boundFramebuffer()
2587 res = boundFboProps_const(target).colorAttachmenti_textures[colorAttachmentIndex]; in getFboAttachmentTexture()
2592 res = boundFboProps_const(target).depthAttachment_texture; in getFboAttachmentTexture()
2595 res = boundFboProps_const(target).stencilAttachment_texture; in getFboAttachmentTexture()
2598 res = boundFboProps_const(target).depthstencilAttachment_texture; in getFboAttachmentTexture()
2715 return boundFboProps_const(target).colorAttachmenti_rbos[colorAttachmentIndex]; in getFboAttachmentRbo()
2720 return boundFboProps_const(target).depthAttachment_rbo; in getFboAttachmentRbo()
2722 return boundFboProps_const(target).stencilAttachment_rbo; in getFboAttachmentRbo()
2724 return boundFboProps_const(target).depthstencilAttachment_rbo; in getFboAttachmentRbo()
2813 res = boundFboProps_const(target).colorAttachmenti_hasTex[colorAttachmentIndex] || in attachmentHasObject()
2814 boundFboProps_const(target).colorAttachmenti_hasRbo[colorAttachmentIndex]; in attachmentHasObject()
2819 res = (boundFboProps_const(target).depthAttachment_hasTexObj) || in attachmentHasObject()
2820 (boundFboProps_const(target).depthAttachment_hasRbo); in attachmentHasObject()
2823 res = (boundFboProps_const(target).stencilAttachment_hasTexObj) || in attachmentHasObject()
2824 (boundFboProps_const(target).stencilAttachment_hasRbo); in attachmentHasObject()
2827 res = (boundFboProps_const(target).depthstencilAttachment_hasTexObj) || in attachmentHasObject()
2828 (boundFboProps_const(target).depthstencilAttachment_hasRbo); in attachmentHasObject()
2835 const FboProps& props = boundFboProps_const(target); in depthStencilHasSameObject()