| 569 | } |
| 570 | |
| 571 | WriteDescriptorSet RunnableGraph::getDescriptorWrite( Attachment const & attach, uint32_t binding, uint32_t index ) |
| 572 | { |
| 573 | if ( attach.isImage() ) |
| 574 | return rungrf::getWrite( attach.imageAttach, SamplerDesc{}, binding, 1u, index, *this ); |
| 575 | return rungrf::getWrite( attach.bufferAttach, binding, 1u, index, *this ); |
| 576 | } |
| 577 | |
| 578 | WriteDescriptorSet RunnableGraph::getDescriptorWrite( Attachment const & attach, SamplerDesc const & samplerDesc, uint32_t binding, uint32_t index ) |
| 579 | { |
no test coverage detected