| 502 | } |
| 503 | |
| 504 | bool FramebufferVulkan::HasReference(VkImageView imageView) const |
| 505 | { |
| 506 | for (int32 i = 0; i < ARRAY_COUNT(Attachments); i++) |
| 507 | { |
| 508 | if (Attachments[i] == imageView) |
| 509 | return true; |
| 510 | } |
| 511 | return false; |
| 512 | } |
| 513 | |
| 514 | RenderPassVulkan::RenderPassVulkan(GPUDeviceVulkan* device, const RenderTargetLayoutVulkan& layout) |
| 515 | : Device(device) |
no outgoing calls
no test coverage detected