| 216 | } |
| 217 | |
| 218 | OPENPGL_INLINE bool Field::operator==(const Field &b) const |
| 219 | { |
| 220 | OPENPGL_ASSERT(m_fieldHandle); |
| 221 | OPENPGL_ASSERT(b.m_fieldHandle); |
| 222 | return pglFieldCompare(m_fieldHandle, b.m_fieldHandle); |
| 223 | } |
| 224 | |
| 225 | OPENPGL_INLINE FieldStatistics Field::GetSurfaceStatistics() const |
| 226 | { |
nothing calls this directly
no test coverage detected