summaryrefslogtreecommitdiff
path: root/src/video_core/gpu.h
diff options
context:
space:
mode:
authorGravatar Subv2018-07-25 23:19:15 -0500
committerGravatar Subv2018-07-26 08:52:21 -0500
commitf85cff0f48a62ae6ae645bb1dd25689135603d69 (patch)
treeeaa2cce135ccbdb8e81142de7ccd8d84af5d8956 /src/video_core/gpu.h
parentMerge pull request #827 from lioncash/log (diff)
downloadyuzu-f85cff0f48a62ae6ae645bb1dd25689135603d69.tar.gz
yuzu-f85cff0f48a62ae6ae645bb1dd25689135603d69.tar.xz
yuzu-f85cff0f48a62ae6ae645bb1dd25689135603d69.zip
GPU: Allow using R16F as a render target format.
Diffstat (limited to 'src/video_core/gpu.h')
-rw-r--r--src/video_core/gpu.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h
index de276c559..c464fc6d1 100644
--- a/src/video_core/gpu.h
+++ b/src/video_core/gpu.h
@@ -29,6 +29,7 @@ enum class RenderTargetFormat : u32 {
29 RG16_UINT = 0xDD, 29 RG16_UINT = 0xDD,
30 RG16_FLOAT = 0xDE, 30 RG16_FLOAT = 0xDE,
31 R11G11B10_FLOAT = 0xE0, 31 R11G11B10_FLOAT = 0xE0,
32 R16_FLOAT = 0xF2,
32 R8_UNORM = 0xF3, 33 R8_UNORM = 0xF3,
33}; 34};
34 35