| 5047 | } |
| 5048 | |
| 5049 | static void VulkanSetTexture(HContext _context, HTexture texture, const TextureParams& params) |
| 5050 | { |
| 5051 | DM_PROFILE(__FUNCTION__); |
| 5052 | VulkanContext* context = (VulkanContext*)_context; |
| 5053 | DM_MUTEX_SCOPED_LOCK(context->m_BaseContext.m_AssetHandleContainerMutex); |
| 5054 | VulkanTexture* tex = GetAssetFromContainer<VulkanTexture>(context->m_BaseContext.m_AssetHandleContainer, texture); |
| 5055 | VulkanSetTextureInternal(context, tex, params); |
| 5056 | } |
| 5057 | |
| 5058 | static int AsyncProcessCallback(HJobContext, HJob job, void* _context, void* data) |
| 5059 | { |
nothing calls this directly
no test coverage detected