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