| 24 | void ImageSubState::SetSwapchain(vvl::Swapchain& swapchain) { SetOpaqueBaseAddress(swapchain.dev_data); } |
| 25 | |
| 26 | bool ImageSubState::IsSimplyBound() const { |
| 27 | bool simple = SimpleBinding(base) || base.IsSwapchainImage() || base.bind_swapchain; |
| 28 | return simple; |
| 29 | } |
| 30 | |
| 31 | void ImageSubState::SetOpaqueBaseAddress(vvl::DeviceState& dev_data) { |
| 32 | // This is safe to call if already called to simplify caller logic |
nothing calls this directly
no test coverage detected