summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_3d.h
diff options
context:
space:
mode:
authornamkazy <nam.kazt.91@gmail.com>2020-03-22 05:35:26 +0100
committernamkazy <nam.kazt.91@gmail.com>2020-03-22 05:35:26 +0100
commit7051dc19020c4cc510e5ae0b490d037ae1ad9bfe (patch)
tree19371ffffa3f3e73a519bfce16415bd9480d9bdf /src/video_core/engines/maxwell_3d.h
parentmarco_interpreter: write hw value when shadow ram requested (diff)
downloadyuzu-7051dc19020c4cc510e5ae0b490d037ae1ad9bfe.tar
yuzu-7051dc19020c4cc510e5ae0b490d037ae1ad9bfe.tar.gz
yuzu-7051dc19020c4cc510e5ae0b490d037ae1ad9bfe.tar.bz2
yuzu-7051dc19020c4cc510e5ae0b490d037ae1ad9bfe.tar.lz
yuzu-7051dc19020c4cc510e5ae0b490d037ae1ad9bfe.tar.xz
yuzu-7051dc19020c4cc510e5ae0b490d037ae1ad9bfe.tar.zst
yuzu-7051dc19020c4cc510e5ae0b490d037ae1ad9bfe.zip
Diffstat (limited to 'src/video_core/engines/maxwell_3d.h')
-rw-r--r--src/video_core/engines/maxwell_3d.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index 5e531e21b..17119beda 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -532,9 +532,13 @@ public:
};
enum class ShadowRamControl : u32 {
+ // write value to shadow ram
Track = 0,
+ // write value to shadow ram ( with validation ??? )
TrackWithFilter = 1,
+ // only write to real hw register
Passthrough = 2,
+ // write value from shadow ram to real hw register
Replay = 3,
};