| 289 | } |
| 290 | |
| 291 | OPENPGL_INLINE bool SampleStorage::operator==(const SampleStorage &b) const |
| 292 | { |
| 293 | OPENPGL_ASSERT(m_sampleStorageHandle); |
| 294 | OPENPGL_ASSERT(b.m_sampleStorageHandle); |
| 295 | return pglSampleStorageCompare(m_sampleStorageHandle, b.m_sampleStorageHandle); |
| 296 | } |
| 297 | |
| 298 | } // namespace cpp |
| 299 | } // namespace openpgl |
nothing calls this directly
no test coverage detected