| 315 | } |
| 316 | |
| 317 | void CommandListWrapper::copyTexture(ITexture* dest, const TextureSlice& destSlice, ITexture* src, const TextureSlice& srcSlice) |
| 318 | { |
| 319 | if (!requireOpenState()) |
| 320 | return; |
| 321 | |
| 322 | m_CommandList->copyTexture(dest, destSlice, src, srcSlice); |
| 323 | } |
| 324 | |
| 325 | void CommandListWrapper::copyTexture(IStagingTexture* dest, const TextureSlice& destSlice, ITexture* src, const TextureSlice& srcSlice) |
| 326 | { |
nothing calls this directly
no outgoing calls
no test coverage detected