summaryrefslogtreecommitdiffstats
path: root/src/video_core/gpu.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-07-25 16:32:18 +0200
committerGitHub <noreply@github.com>2018-07-25 16:32:18 +0200
commit704824d50a2a99ed44e80bd37dfdc6e84ac91fe2 (patch)
treebb938542bf0e534f51e85e91ba04dd38541754fb /src/video_core/gpu.h
parentMerge pull request #818 from MerryMage/dynarmic (diff)
parentGPU: Allow the usage of R8 as a render target format. (diff)
downloadyuzu-704824d50a2a99ed44e80bd37dfdc6e84ac91fe2.tar
yuzu-704824d50a2a99ed44e80bd37dfdc6e84ac91fe2.tar.gz
yuzu-704824d50a2a99ed44e80bd37dfdc6e84ac91fe2.tar.bz2
yuzu-704824d50a2a99ed44e80bd37dfdc6e84ac91fe2.tar.lz
yuzu-704824d50a2a99ed44e80bd37dfdc6e84ac91fe2.tar.xz
yuzu-704824d50a2a99ed44e80bd37dfdc6e84ac91fe2.tar.zst
yuzu-704824d50a2a99ed44e80bd37dfdc6e84ac91fe2.zip
Diffstat (limited to '')
-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 58501ca8b..ba7b81571 100644
--- a/src/video_core/gpu.h
+++ b/src/video_core/gpu.h
@@ -24,6 +24,7 @@ enum class RenderTargetFormat : u32 {
RGBA8_UNORM = 0xD5,
RGBA8_SRGB = 0xD6,
R11G11B10_FLOAT = 0xE0,
+ R8_UNORM = 0xF3,
};
enum class DepthFormat : u32 {