| 212 | } |
| 213 | |
| 214 | SamplerKey VulkanTexture::GetSamplerKey() const |
| 215 | { |
| 216 | return SamplerKey(m_params.m_filter, m_params.m_wrapSMode, m_params.m_wrapTMode); |
| 217 | } |
| 218 | |
| 219 | void VulkanTexture::MakeImageLayoutTransition(VkCommandBuffer commandBuffer, VkImageLayout newLayout, |
| 220 | VkPipelineStageFlags srcStageMask, |
no test coverage detected