| 181 | } |
| 182 | |
| 183 | OPENPGL_INLINE void SampleStorage::AddSample(const SampleData &sample) |
| 184 | { |
| 185 | OPENPGL_ASSERT(m_sampleStorageHandle); |
| 186 | pglSampleStorageAddSample(m_sampleStorageHandle, sample); |
| 187 | } |
| 188 | |
| 189 | OPENPGL_INLINE void SampleStorage::AddSamples(const SampleData *samples, size_t numSamples) |
| 190 | { |
nothing calls this directly
no test coverage detected