| 742 | const VkImageCreateInfo &CreateInfo() const { return create_info_; } |
| 743 | |
| 744 | VkImageSubresourceRange SubresourceRange(VkImageAspectFlags aspect_mask) const { |
| 745 | return VkImageSubresourceRange{aspect_mask, 0, create_info_.mipLevels, 0, create_info_.arrayLayers}; |
| 746 | } |
| 747 | |
| 748 | static VkImageAspectFlags AspectMask(VkFormat format); |
| 749 |
no outgoing calls
no test coverage detected