| 24 | ComPtr<ID3D11Texture2D> Texture; |
| 25 | |
| 26 | Texture2D() = default; |
| 27 | Texture2D(Texture2D&& other) noexcept : TextureBase(std::move(other)), Width(other.Width), Height(other.Height), Texture(std::move(other.Texture)), _vramSize(other._vramSize) |
| 28 | { |
| 29 | other._vramSize = 0; |
nothing calls this directly
no test coverage detected