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