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-06-24 02:39:25 +02:00
|
|
|
IEnumerable<ShaderDeclInfo> GetTextureUsage(long Key);
|
|
|
|
|
|
|
|
void SetConstBuffer(long Key, int Cbuf, byte[] Data);
|
|
|
|
|
|
|
|
void EnsureTextureBinding(string UniformName, int Value);
|
|
|
|
|
|
|
|
void SetFlip(float X, float Y);
|
|
|
|
|
|
|
|
void Bind(long Key);
|
|
|
|
|
|
|
|
void BindProgram();
|
|
|
|
}
|
|
|
|
}
|