2018-06-23 20:39:25 -04:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.Gal
|
|
|
|
{
|
|
|
|
public interface IGalShader
|
|
|
|
{
|
2019-03-03 20:45:25 -05:00
|
|
|
void Create(IGalMemory memory, long key, GalShaderType type);
|
2018-06-23 20:39:25 -04:00
|
|
|
|
2019-03-03 20:45:25 -05:00
|
|
|
void Create(IGalMemory memory, long vpAPos, long key, GalShaderType type);
|
2018-06-27 22:55:08 -04:00
|
|
|
|
2019-03-03 20:45:25 -05:00
|
|
|
IEnumerable<ShaderDeclInfo> GetConstBufferUsage(long key);
|
|
|
|
IEnumerable<ShaderDeclInfo> GetTextureUsage(long key);
|
2018-06-23 20:39:25 -04:00
|
|
|
|
2019-03-03 20:45:25 -05:00
|
|
|
void Bind(long key);
|
2018-06-23 20:39:25 -04:00
|
|
|
|
2019-03-03 20:45:25 -05:00
|
|
|
void Unbind(GalShaderType type);
|
2018-07-14 12:08:39 -04:00
|
|
|
|
2018-06-23 20:39:25 -04:00
|
|
|
void BindProgram();
|
|
|
|
}
|
|
|
|
}
|