| 1146 | } |
| 1147 | |
| 1148 | ResourceStates CommandListWrapper::getTextureSubresourceState(ITexture* texture, ArraySlice arraySlice, MipLevel mipLevel) |
| 1149 | { |
| 1150 | if (!requireOpenState()) |
| 1151 | return ResourceStates::Common; |
| 1152 | |
| 1153 | return m_CommandList->getTextureSubresourceState(texture, arraySlice, mipLevel); |
| 1154 | } |
| 1155 | |
| 1156 | ResourceStates CommandListWrapper::getBufferState(IBuffer* buffer) |
| 1157 | { |
nothing calls this directly
no outgoing calls
no test coverage detected