From 819a7c3de35561b852ccb9c26027a8a7cf3ad7dd Mon Sep 17 00:00:00 2001 From: h4570 Date: Sun, 24 Jul 2022 23:08:10 +0200 Subject: [PATCH] documentation update --- ROADMAP.txt | 1 - .../inc/renderer/core/texture/models/texture_bpp.hpp | 10 +++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/ROADMAP.txt b/ROADMAP.txt index 06048de..69d723e 100644 --- a/ROADMAP.txt +++ b/ROADMAP.txt @@ -4,7 +4,6 @@ - [StaPip] FPS spamming: 190 --- H4570 -- [Renderer] Fix current visual bug - [StaPip] Te same parametry frustumcheck jak w dynamic - [StaPip] No frustum check -> bez - [StaPip] Simple frustum check -> check bboxa z Mesh diff --git a/engine/inc/renderer/core/texture/models/texture_bpp.hpp b/engine/inc/renderer/core/texture/models/texture_bpp.hpp index 69bd7df..32c748f 100644 --- a/engine/inc/renderer/core/texture/models/texture_bpp.hpp +++ b/engine/inc/renderer/core/texture/models/texture_bpp.hpp @@ -14,29 +14,29 @@ namespace Tyra { enum TextureBpp { - // Tyra has 1.3MB~ free VRAM for textures. + // Tyra has 2.27MB~ free VRAM for textures. /** * @brief 32-bit RGBA - Slowest - * Tyra can cache about 4~ of these textures (256x256) + * Tyra can cache about 8~ of these textures (256x256) */ bpp32 = 32, /** * @brief 24-bit RGB - Slow - * Tyra can cache about 6~ of these textures (256x256) + * Tyra can cache about 11~ of these textures (256x256) */ bpp24 = 24, /** * @brief 8-bit palletized (indexed) - Super fast - * Tyra can cache about 19~ of these textures (256x256) + * Tyra can cache about 34~ of these textures (256x256) */ bpp8 = 8, /** * @brief 4-bit palletized (indexed) - Super, super fast - * Tyra can cache about 39~ of these textures (256x256) + * Tyra can cache about 69~ of these textures (256x256) */ bpp4 = 4, };