maxwell_3d: update comments for shadow ram usage

This commit is contained in:
namkazy
2020-03-22 11:35:26 +07:00
parent 01af036c1f
commit 7051dc1902
3 changed files with 6 additions and 2 deletions

View File

@ -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,
};