aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/ValueRange.cs
diff options
context:
space:
mode:
authorRoderick Sieben <RyadaProductions@users.noreply.github.com>2018-12-12 02:48:54 +0100
committergdkchan <gab.dark.100@gmail.com>2018-12-11 23:48:54 -0200
commit2e143365eb9023b97ea51f6c47a12091ee3dc74c (patch)
treec83d2c6ee15d4f374bd548e331002b2ca06a5453 /Ryujinx.Graphics/ValueRange.cs
parent36e8e074c90f11480389560e3f019a161f82efbe (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.cs17
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