| 223 | } |
| 224 | |
| 225 | OPENPGL_INLINE FieldStatistics Field::GetSurfaceStatistics() const |
| 226 | { |
| 227 | OPENPGL_ASSERT(m_fieldHandle); |
| 228 | PGLFieldStatistics fieldStats = pglFieldGetSurfaceStatistics(m_fieldHandle); |
| 229 | return FieldStatistics(fieldStats); |
| 230 | } |
| 231 | |
| 232 | OPENPGL_INLINE FieldStatistics Field::GetVolumeStatistics() const |
| 233 | { |
nothing calls this directly
no test coverage detected