aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/IGalConstBuffer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics/Gal/IGalConstBuffer.cs')
-rw-r--r--Ryujinx.Graphics/Gal/IGalConstBuffer.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Ryujinx.Graphics/Gal/IGalConstBuffer.cs b/Ryujinx.Graphics/Gal/IGalConstBuffer.cs
index 0cdcc237..8c4e6d03 100644
--- a/Ryujinx.Graphics/Gal/IGalConstBuffer.cs
+++ b/Ryujinx.Graphics/Gal/IGalConstBuffer.cs
@@ -7,11 +7,11 @@ namespace Ryujinx.Graphics.Gal
void LockCache();
void UnlockCache();
- void Create(long Key, long Size);
+ void Create(long key, long size);
- bool IsCached(long Key, long Size);
+ bool IsCached(long key, long size);
- void SetData(long Key, long Size, IntPtr HostAddress);
- void SetData(long Key, byte[] Data);
+ void SetData(long key, long size, IntPtr hostAddress);
+ void SetData(long key, byte[] data);
}
} \ No newline at end of file