| 76 | unsigned int GetHeight() const { return m_Height; } |
| 77 | unsigned int GetNumChannels() const { return m_NumChannels; } |
| 78 | unsigned int GetNumElements() const { return GetWidth() * GetHeight() * GetNumChannels(); } |
| 79 | unsigned int GetSizeInBytes() const { return GetNumElements() * GetSingleElementSizeInBytes(); } |
| 80 | |
| 81 | // Returns the pixel identified by the given coordinates as a 3-channel value. |
no outgoing calls
no test coverage detected