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