Lines Matching refs:boundFboProps

1368 FboProps& GLClientState::boundFboProps(GLenum target) {  in boundFboProps()  function in GLClientState
1409 boundFboProps(target).previouslyBound = true; in bindFramebuffer()
1452 boundFboProps(target).colorAttachmenti_textures[colorAttachmentIndex] = texture; in attachTextureObject()
1453 boundFboProps(target).colorAttachmenti_hasTex[colorAttachmentIndex] = true; in attachTextureObject()
1458 boundFboProps(target).depthAttachment_texture = texture; in attachTextureObject()
1459 boundFboProps(target).depthAttachment_hasTexObj = true; in attachTextureObject()
1462 boundFboProps(target).stencilAttachment_texture = texture; in attachTextureObject()
1463 boundFboProps(target).stencilAttachment_hasTexObj = true; in attachTextureObject()
1466 boundFboProps(target).depthstencilAttachment_texture = texture; in attachTextureObject()
1467 boundFboProps(target).depthstencilAttachment_hasTexObj = true; in attachTextureObject()
1468 boundFboProps(target).stencilAttachment_texture = texture; in attachTextureObject()
1469 boundFboProps(target).stencilAttachment_hasTexObj = true; in attachTextureObject()
1470 boundFboProps(target).depthAttachment_texture = texture; in attachTextureObject()
1471 boundFboProps(target).depthAttachment_hasTexObj = true; in attachTextureObject()
1523 if (boundFboProps(target).colorAttachmenti_hasRbo[colorAttachmentIndex] && in detachRboFromFbo()
1524 boundFboProps(target).colorAttachmenti_rbos[colorAttachmentIndex] == renderbuffer) { in detachRboFromFbo()
1525 boundFboProps(target).colorAttachmenti_rbos[colorAttachmentIndex] = 0; in detachRboFromFbo()
1526 boundFboProps(target).colorAttachmenti_hasRbo[colorAttachmentIndex] = false; in detachRboFromFbo()
1532 if (boundFboProps(target).depthAttachment_rbo == renderbuffer && in detachRboFromFbo()
1533 boundFboProps(target).depthAttachment_hasRbo) { in detachRboFromFbo()
1534 boundFboProps(target).depthAttachment_rbo = 0; in detachRboFromFbo()
1535 boundFboProps(target).depthAttachment_hasRbo = false; in detachRboFromFbo()
1539 if (boundFboProps(target).stencilAttachment_rbo == renderbuffer && in detachRboFromFbo()
1540 boundFboProps(target).stencilAttachment_hasRbo) { in detachRboFromFbo()
1541 boundFboProps(target).stencilAttachment_rbo = 0; in detachRboFromFbo()
1542 boundFboProps(target).stencilAttachment_hasRbo = false; in detachRboFromFbo()
1546 if (boundFboProps(target).depthAttachment_rbo == renderbuffer && in detachRboFromFbo()
1547 boundFboProps(target).depthAttachment_hasRbo) { in detachRboFromFbo()
1548 boundFboProps(target).depthAttachment_rbo = 0; in detachRboFromFbo()
1549 boundFboProps(target).depthAttachment_hasRbo = false; in detachRboFromFbo()
1551 if (boundFboProps(target).stencilAttachment_rbo == renderbuffer && in detachRboFromFbo()
1552 boundFboProps(target).stencilAttachment_hasRbo) { in detachRboFromFbo()
1553 boundFboProps(target).stencilAttachment_rbo = 0; in detachRboFromFbo()
1554 boundFboProps(target).stencilAttachment_hasRbo = false; in detachRboFromFbo()
1556 if (boundFboProps(target).depthstencilAttachment_rbo == renderbuffer && in detachRboFromFbo()
1557 boundFboProps(target).depthstencilAttachment_hasRbo) { in detachRboFromFbo()
1558 boundFboProps(target).depthstencilAttachment_rbo = 0; in detachRboFromFbo()
1559 boundFboProps(target).depthstencilAttachment_hasRbo = false; in detachRboFromFbo()
1571 boundFboProps(target).colorAttachmenti_rbos[colorAttachmentIndex] = renderbuffer; in attachRbo()
1572 boundFboProps(target).colorAttachmenti_hasRbo[colorAttachmentIndex] = true; in attachRbo()
1577 boundFboProps(target).depthAttachment_rbo = renderbuffer; in attachRbo()
1578 boundFboProps(target).depthAttachment_hasRbo = true; in attachRbo()
1581 boundFboProps(target).stencilAttachment_rbo = renderbuffer; in attachRbo()
1582 boundFboProps(target).stencilAttachment_hasRbo = true; in attachRbo()
1585 boundFboProps(target).depthAttachment_rbo = renderbuffer; in attachRbo()
1586 boundFboProps(target).depthAttachment_hasRbo = true; in attachRbo()
1587 boundFboProps(target).stencilAttachment_rbo = renderbuffer; in attachRbo()
1588 boundFboProps(target).stencilAttachment_hasRbo = true; in attachRbo()
1589 boundFboProps(target).depthstencilAttachment_rbo = renderbuffer; in attachRbo()
1590 boundFboProps(target).depthstencilAttachment_hasRbo = true; in attachRbo()