PvrTcDecoder.h 825 B

1234567891011121314151617181920212223242526
  1. //============================================================================
  2. #pragma once
  3. #include "Point2.h"
  4. #include "ColorRgba.h"
  5. //============================================================================
  6. namespace Javelin
  7. {
  8. //============================================================================
  9. class PvrTcDecoder
  10. {
  11. public:
  12. static void DecodeRgb4Bpp(ColorRgb<unsigned char>* result, const Point2<int>& size, const void* data);
  13. static void DecodeRgba4Bpp(ColorRgba<unsigned char>* result, const Point2<int>& size, const void* data);
  14. private:
  15. static unsigned GetMortonNumber(int x, int y);
  16. };
  17. //============================================================================
  18. }
  19. //============================================================================