| 562 | } |
| 563 | |
| 564 | VkDescriptorType RunnableGraph::getDescriptorType( Attachment const & attach )const |
| 565 | { |
| 566 | if ( attach.isImage() ) |
| 567 | return rungrf::getDescriptorType( attach.imageAttach ); |
| 568 | return rungrf::getDescriptorType( attach.bufferAttach ); |
| 569 | } |
| 570 | |
| 571 | WriteDescriptorSet RunnableGraph::getDescriptorWrite( Attachment const & attach, uint32_t binding, uint32_t index ) |
| 572 | { |
no test coverage detected