diff options
| author | Roderick Sieben <RyadaProductions@users.noreply.github.com> | 2018-12-12 02:48:54 +0100 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-12-11 23:48:54 -0200 |
| commit | 2e143365eb9023b97ea51f6c47a12091ee3dc74c (patch) | |
| tree | c83d2c6ee15d4f374bd548e331002b2ca06a5453 /Ryujinx.Graphics/ValueRange.cs | |
| parent | 36e8e074c90f11480389560e3f019a161f82efbe (diff) | |
Optimized memory modified check (#538)
* Optimized memory modified check
This was initially in some cases more expensive than plainly sending the data. Now it should have way better performance.
* Small refactoring
* renamed InvalidAccessEventArgs
* Renamed PtPageBits
* Removed ValueRange(set)
They are currently unused and won't be likely to be used in the near future
Diffstat (limited to 'Ryujinx.Graphics/ValueRange.cs')
| -rw-r--r-- | Ryujinx.Graphics/ValueRange.cs | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/Ryujinx.Graphics/ValueRange.cs b/Ryujinx.Graphics/ValueRange.cs deleted file mode 100644 index 6298bd8e..00000000 --- a/Ryujinx.Graphics/ValueRange.cs +++ /dev/null @@ -1,17 +0,0 @@ -namespace Ryujinx.Graphics -{ - struct ValueRange<T> - { - public long Start { get; private set; } - public long End { get; private set; } - - public T Value { get; set; } - - public ValueRange(long Start, long End, T Value = default(T)) - { - this.Start = Start; - this.End = End; - this.Value = Value; - } - } -}
\ No newline at end of file |
