| 168 | } |
| 169 | |
| 170 | OPENPGL_INLINE SampleStorage::~SampleStorage() |
| 171 | { |
| 172 | OPENPGL_ASSERT(m_sampleStorageHandle); |
| 173 | pglReleaseSampleStorage(m_sampleStorageHandle); |
| 174 | m_sampleStorageHandle = nullptr; |
| 175 | } |
| 176 | |
| 177 | OPENPGL_INLINE bool SampleStorage::Store(const std::string &sampleStorageFileName) const |
| 178 | { |
nothing calls this directly
no test coverage detected