diff options
Diffstat (limited to 'Ryujinx.Graphics/Gal/OpenGL/OglShaderProgram.cs')
-rw-r--r-- | Ryujinx.Graphics/Gal/OpenGL/OglShaderProgram.cs | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Ryujinx.Graphics/Gal/OpenGL/OglShaderProgram.cs b/Ryujinx.Graphics/Gal/OpenGL/OglShaderProgram.cs index 9e68a8e6..86126bca 100644 --- a/Ryujinx.Graphics/Gal/OpenGL/OglShaderProgram.cs +++ b/Ryujinx.Graphics/Gal/OpenGL/OglShaderProgram.cs @@ -1,4 +1,5 @@ using OpenTK.Graphics.OpenGL; +using Ryujinx.Graphics.Shader; using System; using System.Collections.Generic; @@ -23,14 +24,14 @@ namespace Ryujinx.Graphics.Gal.OpenGL public string Code { get; private set; } - public IEnumerable<ShaderDeclInfo> ConstBufferUsage { get; private set; } - public IEnumerable<ShaderDeclInfo> TextureUsage { get; private set; } + public IEnumerable<CBufferDescriptor> ConstBufferUsage { get; private set; } + public IEnumerable<TextureDescriptor> TextureUsage { get; private set; } public OglShaderStage( - GalShaderType type, - string code, - IEnumerable<ShaderDeclInfo> constBufferUsage, - IEnumerable<ShaderDeclInfo> textureUsage) + GalShaderType type, + string code, + IEnumerable<CBufferDescriptor> constBufferUsage, + IEnumerable<TextureDescriptor> textureUsage) { Type = type; Code = code; |