GPU: Allow using R16F as a render target format.

This commit is contained in:
Subv 2018-07-25 23:19:15 -05:00
parent 825e272dcf
commit b994374b5c
2 changed files with 4 additions and 1 deletions

View file

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