AbstractTexture: Add support for depth textures/formats

This commit is contained in:
Stenzek
2018-01-21 23:59:19 +10:00
parent 6374a4c4a8
commit 2a6d9e4713
7 changed files with 155 additions and 16 deletions

View File

@ -18,6 +18,11 @@ enum class AbstractTextureFormat : u32
DXT3,
DXT5,
BPTC,
R16,
D16,
R32F,
D32F,
D32F_S8,
Undefined
};