summaryrefslogtreecommitdiff
path: root/src/video_core/gpu.h
diff options
context:
space:
mode:
authorGravatar bunnei2018-07-26 11:44:37 -0700
committerGravatar GitHub2018-07-26 11:44:37 -0700
commit5a27f4e4ccf029a355145b309c691ebc7281b9e2 (patch)
treeeaa2cce135ccbdb8e81142de7ccd8d84af5d8956 /src/video_core/gpu.h
parentMerge pull request #827 from lioncash/log (diff)
parentGPU: Allow using R16F as a render target format. (diff)
downloadyuzu-5a27f4e4ccf029a355145b309c691ebc7281b9e2.tar.gz
yuzu-5a27f4e4ccf029a355145b309c691ebc7281b9e2.tar.xz
yuzu-5a27f4e4ccf029a355145b309c691ebc7281b9e2.zip
Merge pull request #829 from Subv/r16f_rt
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