diff options
| author | Rémi Verschelde | 2016-10-11 20:44:26 +0200 |
|---|---|---|
| committer | Rémi Verschelde | 2016-10-15 11:50:39 +0200 |
| commit | b1e8889d969f5f88539c47c2afac6c9ea2a2dc11 (patch) | |
| tree | e5d3cec5db3c03d59f257ee94ecbefa48956a602 /drivers/pvr/PvrTcEncoder.h | |
| parent | c31ad71f10f68705a456b4257c084d4008c34370 (diff) | |
| download | godot-b1e8889d969f5f88539c47c2afac6c9ea2a2dc11.tar.gz godot-b1e8889d969f5f88539c47c2afac6c9ea2a2dc11.tar.zst godot-b1e8889d969f5f88539c47c2afac6c9ea2a2dc11.zip | |
Diffstat (limited to 'drivers/pvr/PvrTcEncoder.h')
| -rw-r--r-- | drivers/pvr/PvrTcEncoder.h | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/drivers/pvr/PvrTcEncoder.h b/drivers/pvr/PvrTcEncoder.h deleted file mode 100644 index b9344367d..000000000 --- a/drivers/pvr/PvrTcEncoder.h +++ /dev/null @@ -1,40 +0,0 @@ -//============================================================================ - -#pragma once -#include "ColorRgba.h" - -//============================================================================ - -namespace Javelin -{ -//============================================================================ - - class AlphaBitmap; - class RgbBitmap; - class RgbaBitmap; - - class PvrTcEncoder - { - public: - // Result must be large enough for bitmap.GetArea()/4 bytes - static void EncodeAlpha2Bpp(void* result, const AlphaBitmap& bitmap); - - // Result must be large enough for bitmap.GetArea()/2 bytes - static void EncodeAlpha4Bpp(void* result, const AlphaBitmap& bitmap); - - // Result must be large enough for bitmap.GetArea()/2 bytes - static void EncodeRgb4Bpp(void* result, const RgbBitmap& bitmap); - - // Result must be large enough for bitmap.GetArea()/2 bytes - static void EncodeRgb4Bpp(void* result, const RgbaBitmap& bitmap); - - // Result must be large enough for bitmap.GetArea()/2 bytes - static void EncodeRgba4Bpp(void* result, const RgbaBitmap& bitmap); - - private: - static unsigned GetMortonNumber(int x, int y); - }; - -//============================================================================ -} -//============================================================================ |
