temporary fix for texture system

This commit is contained in:
h4570
2022-07-28 23:54:53 +02:00
parent 19e99eee56
commit 7ec6bb71b8
3 changed files with 17 additions and 8 deletions
@@ -14,29 +14,23 @@ namespace Tyra {
enum TextureBpp {
// Tyra has 2.27MB~ free VRAM for textures.
/**
* @brief 32-bit RGBA - Slowest
* Tyra can cache about 8~ of these textures (256x256)
*/
bpp32 = 32,
/**
* @brief 24-bit RGB - Slow
* Tyra can cache about 11~ of these textures (256x256)
*/
bpp24 = 24,
/**
* @brief 8-bit palletized (indexed) - Super fast
* Tyra can cache about 34~ of these textures (256x256)
*/
bpp8 = 8,
/**
* @brief 4-bit palletized (indexed) - Super, super fast
* Tyra can cache about 69~ of these textures (256x256)
*/
bpp4 = 4,
};