| 259 | } |
| 260 | |
| 261 | static inline bool IsRenderTargetbound(VulkanContext* context, HRenderTarget rt) |
| 262 | { |
| 263 | DM_MUTEX_SCOPED_LOCK(context->m_BaseContext.m_AssetHandleContainerMutex); |
| 264 | RenderTarget* current_rt = GetAssetFromContainer<RenderTarget>(context->m_BaseContext.m_AssetHandleContainer, rt); |
| 265 | return current_rt ? current_rt->m_IsBound : 0; |
| 266 | } |
| 267 | |
| 268 | static void FlushPendingRenderTargetClear(VulkanContext* context, HRenderTarget render_target) |
| 269 | { |
no outgoing calls
no test coverage detected