1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-09-10 16:26:32 -05:00

Vulkan Rasterizer: Fix clears on integer textures.

This commit is contained in:
FernandoS27
2021-10-19 19:41:57 +02:00
committed by Fernando Sahmkow
parent 150bc45401
commit 826a350e2b
3 changed files with 84 additions and 1 deletions

View File

@@ -462,6 +462,10 @@ bool IsPixelFormatSRGB(PixelFormat format);
bool IsPixelFormatInteger(PixelFormat format);
bool IsPixelFormatSignedInteger(PixelFormat format);
size_t PixelComponentSizeBitsInteger(PixelFormat format);
std::pair<u32, u32> GetASTCBlockSize(PixelFormat format);
u64 EstimatedDecompressedSize(u64 base_size, PixelFormat format);