diff options
Diffstat (limited to 'Ryujinx.Graphics/Gal/IGalShader.cs')
-rw-r--r-- | Ryujinx.Graphics/Gal/IGalShader.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Ryujinx.Graphics/Gal/IGalShader.cs b/Ryujinx.Graphics/Gal/IGalShader.cs index 99cd4d76..6a9abe75 100644 --- a/Ryujinx.Graphics/Gal/IGalShader.cs +++ b/Ryujinx.Graphics/Gal/IGalShader.cs @@ -1,3 +1,4 @@ +using Ryujinx.Graphics.Shader; using System.Collections.Generic; namespace Ryujinx.Graphics.Gal @@ -8,8 +9,8 @@ namespace Ryujinx.Graphics.Gal void Create(IGalMemory memory, long vpAPos, long key, GalShaderType type); - IEnumerable<ShaderDeclInfo> GetConstBufferUsage(long key); - IEnumerable<ShaderDeclInfo> GetTextureUsage(long key); + IEnumerable<CBufferDescriptor> GetConstBufferUsage(long key); + IEnumerable<TextureDescriptor> GetTextureUsage(long key); void Bind(long key); |