2018-06-23 17:39:25 -07:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.Gal
|
|
|
|
{
|
|
|
|
public interface IGalShader
|
|
|
|
{
|
|
|
|
void Create(IGalMemory Memory, long Key, GalShaderType Type);
|
|
|
|
|
2018-06-27 19:55:08 -07:00
|
|
|
void Create(IGalMemory Memory, long VpAPos, long Key, GalShaderType Type);
|
|
|
|
|
2018-08-15 11:59:51 -07:00
|
|
|
IEnumerable<ShaderDeclInfo> GetConstBufferUsage(long Key);
|
2018-06-23 17:39:25 -07:00
|
|
|
IEnumerable<ShaderDeclInfo> GetTextureUsage(long Key);
|
|
|
|
|
|
|
|
void Bind(long Key);
|
|
|
|
|
2018-07-14 09:08:39 -07:00
|
|
|
void Unbind(GalShaderType Type);
|
|
|
|
|
2018-06-23 17:39:25 -07:00
|
|
|
void BindProgram();
|
|
|
|
}
|
|
|
|
}
|