summaryrefslogtreecommitdiffstats
path: root/src/video_core/pica.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2015-03-08 18:05:17 +0100
committerSubv <subv2112@gmail.com>2015-03-10 02:12:39 +0100
commit414b0741c445a7960f9ad1ee4a5672f8af4760db (patch)
tree5218b976cf8e15e745a9cf6037a7c133b7559fed /src/video_core/pica.h
parentGPU/Textures: Fixed ETC texture decoding. (diff)
downloadyuzu-414b0741c445a7960f9ad1ee4a5672f8af4760db.tar
yuzu-414b0741c445a7960f9ad1ee4a5672f8af4760db.tar.gz
yuzu-414b0741c445a7960f9ad1ee4a5672f8af4760db.tar.bz2
yuzu-414b0741c445a7960f9ad1ee4a5672f8af4760db.tar.lz
yuzu-414b0741c445a7960f9ad1ee4a5672f8af4760db.tar.xz
yuzu-414b0741c445a7960f9ad1ee4a5672f8af4760db.tar.zst
yuzu-414b0741c445a7960f9ad1ee4a5672f8af4760db.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/pica.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/video_core/pica.h b/src/video_core/pica.h
index b14de9278..6549693f5 100644
--- a/src/video_core/pica.h
+++ b/src/video_core/pica.h
@@ -418,6 +418,13 @@ struct Regs {
RGBA4 = 4,
};
+ enum DepthFormat : u32 {
+ D16 = 0,
+
+ D24 = 2,
+ D24S8 = 3
+ };
+
INSERT_PADDING_WORDS(0x6);
u32 depth_format;