aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/IGalShader.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics/Gal/IGalShader.cs')
-rw-r--r--Ryujinx.Graphics/Gal/IGalShader.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/Ryujinx.Graphics/Gal/IGalShader.cs b/Ryujinx.Graphics/Gal/IGalShader.cs
index 4b951fa6..99cd4d76 100644
--- a/Ryujinx.Graphics/Gal/IGalShader.cs
+++ b/Ryujinx.Graphics/Gal/IGalShader.cs
@@ -4,16 +4,16 @@ namespace Ryujinx.Graphics.Gal
{
public interface IGalShader
{
- void Create(IGalMemory Memory, long Key, GalShaderType Type);
+ void Create(IGalMemory memory, long key, GalShaderType type);
- void Create(IGalMemory Memory, long VpAPos, long Key, GalShaderType Type);
+ void Create(IGalMemory memory, long vpAPos, long key, GalShaderType type);
- IEnumerable<ShaderDeclInfo> GetConstBufferUsage(long Key);
- IEnumerable<ShaderDeclInfo> GetTextureUsage(long Key);
+ IEnumerable<ShaderDeclInfo> GetConstBufferUsage(long key);
+ IEnumerable<ShaderDeclInfo> GetTextureUsage(long key);
- void Bind(long Key);
+ void Bind(long key);
- void Unbind(GalShaderType Type);
+ void Unbind(GalShaderType type);
void BindProgram();
}