2019-12-29 00:45:33 +01:00
|
|
|
using OpenTK.Graphics.OpenGL;
|
|
|
|
using Ryujinx.Common.Logging;
|
2019-10-13 08:02:07 +02:00
|
|
|
using Ryujinx.Graphics.GAL;
|
|
|
|
using Ryujinx.Graphics.Shader;
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.OpenGL
|
|
|
|
{
|
|
|
|
class Program : IProgram
|
|
|
|
{
|
2019-10-18 04:41:18 +02:00
|
|
|
private const int ShaderStages = 6;
|
|
|
|
|
|
|
|
private const int UbStageShift = 5;
|
|
|
|
private const int SbStageShift = 4;
|
|
|
|
private const int TexStageShift = 5;
|
|
|
|
private const int ImgStageShift = 3;
|
|
|
|
|
|
|
|
private const int UbsPerStage = 1 << UbStageShift;
|
|
|
|
private const int SbsPerStage = 1 << SbStageShift;
|
|
|
|
private const int TexsPerStage = 1 << TexStageShift;
|
|
|
|
private const int ImgsPerStage = 1 << ImgStageShift;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
|
|
public int Handle { get; private set; }
|
|
|
|
|
|
|
|
public bool IsLinked { get; private set; }
|
|
|
|
|
|
|
|
private int[] _ubBindingPoints;
|
|
|
|
private int[] _sbBindingPoints;
|
|
|
|
private int[] _textureUnits;
|
2019-10-18 04:41:18 +02:00
|
|
|
private int[] _imageUnits;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
|
|
public Program(IShader[] shaders)
|
|
|
|
{
|
2019-10-18 04:41:18 +02:00
|
|
|
_ubBindingPoints = new int[UbsPerStage * ShaderStages];
|
|
|
|
_sbBindingPoints = new int[SbsPerStage * ShaderStages];
|
|
|
|
_textureUnits = new int[TexsPerStage * ShaderStages];
|
|
|
|
_imageUnits = new int[ImgsPerStage * ShaderStages];
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
|
|
for (int index = 0; index < _ubBindingPoints.Length; index++)
|
|
|
|
{
|
|
|
|
_ubBindingPoints[index] = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int index = 0; index < _sbBindingPoints.Length; index++)
|
|
|
|
{
|
|
|
|
_sbBindingPoints[index] = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int index = 0; index < _textureUnits.Length; index++)
|
|
|
|
{
|
|
|
|
_textureUnits[index] = -1;
|
|
|
|
}
|
|
|
|
|
2019-10-18 04:41:18 +02:00
|
|
|
for (int index = 0; index < _imageUnits.Length; index++)
|
|
|
|
{
|
|
|
|
_imageUnits[index] = -1;
|
|
|
|
}
|
|
|
|
|
2019-10-13 08:02:07 +02:00
|
|
|
Handle = GL.CreateProgram();
|
|
|
|
|
|
|
|
for (int index = 0; index < shaders.Length; index++)
|
|
|
|
{
|
|
|
|
int shaderHandle = ((Shader)shaders[index]).Handle;
|
|
|
|
|
|
|
|
GL.AttachShader(Handle, shaderHandle);
|
|
|
|
}
|
|
|
|
|
|
|
|
GL.LinkProgram(Handle);
|
|
|
|
|
2019-12-31 23:09:49 +01:00
|
|
|
for (int index = 0; index < shaders.Length; index++)
|
|
|
|
{
|
|
|
|
int shaderHandle = ((Shader)shaders[index]).Handle;
|
|
|
|
|
|
|
|
GL.DetachShader(Handle, shaderHandle);
|
|
|
|
}
|
|
|
|
|
2019-10-13 08:02:07 +02:00
|
|
|
CheckProgramLink();
|
|
|
|
|
|
|
|
Bind();
|
|
|
|
|
2020-02-02 04:25:52 +01:00
|
|
|
int ubBindingPoint = 0;
|
2019-10-13 08:02:07 +02:00
|
|
|
int sbBindingPoint = 0;
|
|
|
|
int textureUnit = 0;
|
2019-11-10 15:03:38 +01:00
|
|
|
int imageUnit = 0;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
|
|
for (int index = 0; index < shaders.Length; index++)
|
|
|
|
{
|
|
|
|
Shader shader = (Shader)shaders[index];
|
|
|
|
|
|
|
|
foreach (BufferDescriptor descriptor in shader.Info.CBuffers)
|
|
|
|
{
|
|
|
|
int location = GL.GetUniformBlockIndex(Handle, descriptor.Name);
|
|
|
|
|
|
|
|
if (location < 0)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
GL.UniformBlockBinding(Handle, location, ubBindingPoint);
|
|
|
|
|
2019-10-18 04:41:18 +02:00
|
|
|
int bpIndex = (int)shader.Stage << UbStageShift | descriptor.Slot;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
|
|
_ubBindingPoints[bpIndex] = ubBindingPoint;
|
|
|
|
|
|
|
|
ubBindingPoint++;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach (BufferDescriptor descriptor in shader.Info.SBuffers)
|
|
|
|
{
|
|
|
|
int location = GL.GetProgramResourceIndex(Handle, ProgramInterface.ShaderStorageBlock, descriptor.Name);
|
|
|
|
|
|
|
|
if (location < 0)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
GL.ShaderStorageBlockBinding(Handle, location, sbBindingPoint);
|
|
|
|
|
|
|
|
int bpIndex = (int)shader.Stage << SbStageShift | descriptor.Slot;
|
|
|
|
|
|
|
|
_sbBindingPoints[bpIndex] = sbBindingPoint;
|
|
|
|
|
|
|
|
sbBindingPoint++;
|
|
|
|
}
|
|
|
|
|
|
|
|
int samplerIndex = 0;
|
|
|
|
|
|
|
|
foreach (TextureDescriptor descriptor in shader.Info.Textures)
|
|
|
|
{
|
|
|
|
int location = GL.GetUniformLocation(Handle, descriptor.Name);
|
|
|
|
|
|
|
|
if (location < 0)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
GL.Uniform1(location, textureUnit);
|
|
|
|
|
2019-10-18 04:41:18 +02:00
|
|
|
int uIndex = (int)shader.Stage << TexStageShift | samplerIndex++;
|
|
|
|
|
|
|
|
_textureUnits[uIndex] = textureUnit;
|
|
|
|
|
|
|
|
textureUnit++;
|
|
|
|
}
|
|
|
|
|
|
|
|
int imageIndex = 0;
|
|
|
|
|
|
|
|
foreach (TextureDescriptor descriptor in shader.Info.Images)
|
|
|
|
{
|
|
|
|
int location = GL.GetUniformLocation(Handle, descriptor.Name);
|
|
|
|
|
|
|
|
if (location < 0)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-11-10 15:03:38 +01:00
|
|
|
GL.Uniform1(location, imageUnit);
|
2019-10-18 04:41:18 +02:00
|
|
|
|
|
|
|
int uIndex = (int)shader.Stage << ImgStageShift | imageIndex++;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
2019-11-10 15:03:38 +01:00
|
|
|
_imageUnits[uIndex] = imageUnit;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
2019-11-10 15:03:38 +01:00
|
|
|
imageUnit++;
|
2019-10-13 08:02:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Bind()
|
|
|
|
{
|
|
|
|
GL.UseProgram(Handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
public int GetUniformBufferBindingPoint(ShaderStage stage, int index)
|
|
|
|
{
|
2019-10-18 04:41:18 +02:00
|
|
|
return _ubBindingPoints[(int)stage << UbStageShift | index];
|
2019-10-13 08:02:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public int GetStorageBufferBindingPoint(ShaderStage stage, int index)
|
|
|
|
{
|
|
|
|
return _sbBindingPoints[(int)stage << SbStageShift | index];
|
|
|
|
}
|
|
|
|
|
|
|
|
public int GetTextureUnit(ShaderStage stage, int index)
|
|
|
|
{
|
2019-10-18 04:41:18 +02:00
|
|
|
return _textureUnits[(int)stage << TexStageShift | index];
|
|
|
|
}
|
|
|
|
|
|
|
|
public int GetImageUnit(ShaderStage stage, int index)
|
|
|
|
{
|
2019-11-10 15:03:38 +01:00
|
|
|
return _imageUnits[(int)stage << ImgStageShift | index];
|
2019-10-13 08:02:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private void CheckProgramLink()
|
|
|
|
{
|
2019-12-29 00:45:33 +01:00
|
|
|
GL.GetProgram(Handle, GetProgramParameterName.LinkStatus, out int status);
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
|
|
if (status == 0)
|
|
|
|
{
|
2019-12-30 18:47:20 +01:00
|
|
|
// Use GL.GetProgramInfoLog(Handle), it may be too long to print on the log.
|
|
|
|
Logger.PrintDebug(LogClass.Gpu, "Shader linking failed.");
|
2019-10-13 08:02:07 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
IsLinked = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
if (Handle != 0)
|
|
|
|
{
|
|
|
|
GL.DeleteProgram(Handle);
|
|
|
|
|
|
|
|
Handle = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|