| 113 | |
| 114 | |
| 115 | TextureCache::TextureCache( |
| 116 | nvrhi::IDevice* device, |
| 117 | std::shared_ptr<IFileSystem> fs, |
| 118 | std::shared_ptr<DescriptorTableManager> descriptorTable) |
| 119 | : m_Device(device) |
| 120 | , m_DescriptorTable(std::move(descriptorTable)) |
| 121 | , m_fs(std::move(fs)) |
| 122 | { |
| 123 | } |
| 124 | |
| 125 | TextureCache::~TextureCache() |
| 126 | { |
nothing calls this directly
no outgoing calls
no test coverage detected