Image.inl 355 B

1234567891011121314151617181920212223242526
  1. #include "Image.h"
  2. namespace gameplay
  3. {
  4. inline unsigned char* Image::getData() const
  5. {
  6. return _data;
  7. }
  8. inline Image::Format Image::getFormat() const
  9. {
  10. return _format;
  11. }
  12. inline unsigned int Image::getHeight() const
  13. {
  14. return _height;
  15. }
  16. inline unsigned int Image::getWidth() const
  17. {
  18. return _width;
  19. }
  20. }