Implement R32_FLOAT RenderTargetFormat

This commit is contained in:
Unknown 2018-08-01 15:31:42 +02:00
parent 703663d761
commit 0d8fcab136
3 changed files with 5 additions and 0 deletions

View file

@ -29,6 +29,7 @@ enum class RenderTargetFormat : u32 {
RG16_UINT = 0xDD,
RG16_FLOAT = 0xDE,
R11G11B10_FLOAT = 0xE0,
R32_FLOAT = 0xE5,
R16_FLOAT = 0xF2,
R8_UNORM = 0xF3,
};