2018-04-08 21:17:35 +02:00
|
|
|
using OpenTK;
|
|
|
|
using OpenTK.Graphics.OpenGL;
|
|
|
|
using System;
|
2018-04-13 20:12:58 +02:00
|
|
|
using System.Collections.Generic;
|
2018-04-08 21:17:35 +02:00
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.Gal.OpenGL
|
|
|
|
{
|
|
|
|
class OGLFrameBuffer
|
|
|
|
{
|
2018-04-13 20:12:58 +02:00
|
|
|
private class FrameBuffer
|
2018-04-08 21:17:35 +02:00
|
|
|
{
|
2018-04-13 20:12:58 +02:00
|
|
|
public int Width { get; set; }
|
|
|
|
public int Height { get; set; }
|
|
|
|
|
|
|
|
public int Handle { get; private set; }
|
|
|
|
public int RbHandle { get; private set; }
|
|
|
|
public int TexHandle { get; private set; }
|
|
|
|
|
|
|
|
public FrameBuffer(int Width, int Height)
|
|
|
|
{
|
|
|
|
this.Width = Width;
|
|
|
|
this.Height = Height;
|
|
|
|
|
|
|
|
Handle = GL.GenFramebuffer();
|
|
|
|
RbHandle = GL.GenRenderbuffer();
|
|
|
|
TexHandle = GL.GenTexture();
|
|
|
|
}
|
2018-04-08 21:17:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private struct ShaderProgram
|
|
|
|
{
|
|
|
|
public int Handle;
|
|
|
|
public int VpHandle;
|
|
|
|
public int FpHandle;
|
|
|
|
}
|
|
|
|
|
2018-04-13 20:12:58 +02:00
|
|
|
private Dictionary<long, FrameBuffer> Fbs;
|
2018-04-08 21:17:35 +02:00
|
|
|
|
|
|
|
private ShaderProgram Shader;
|
|
|
|
|
|
|
|
private bool IsInitialized;
|
|
|
|
|
2018-04-13 20:12:58 +02:00
|
|
|
private int RawFbTexWidth;
|
|
|
|
private int RawFbTexHeight;
|
|
|
|
private int RawFbTexHandle;
|
|
|
|
|
|
|
|
private int CurrFbHandle;
|
|
|
|
private int CurrTexHandle;
|
|
|
|
|
2018-04-08 21:17:35 +02:00
|
|
|
private int VaoHandle;
|
|
|
|
private int VboHandle;
|
|
|
|
|
|
|
|
public OGLFrameBuffer()
|
|
|
|
{
|
2018-04-13 20:12:58 +02:00
|
|
|
Fbs = new Dictionary<long, FrameBuffer>();
|
2018-04-08 21:17:35 +02:00
|
|
|
|
|
|
|
Shader = new ShaderProgram();
|
|
|
|
}
|
|
|
|
|
2018-04-13 20:12:58 +02:00
|
|
|
public void Create(long Tag, int Width, int Height)
|
2018-04-08 21:17:35 +02:00
|
|
|
{
|
2018-04-13 20:12:58 +02:00
|
|
|
if (Fbs.TryGetValue(Tag, out FrameBuffer Fb))
|
2018-04-08 21:17:35 +02:00
|
|
|
{
|
2018-04-13 20:12:58 +02:00
|
|
|
if (Fb.Width != Width ||
|
|
|
|
Fb.Height != Height)
|
|
|
|
{
|
|
|
|
SetupTexture(Fb.TexHandle, Width, Height);
|
2018-04-08 21:17:35 +02:00
|
|
|
|
2018-04-13 20:12:58 +02:00
|
|
|
Fb.Width = Width;
|
|
|
|
Fb.Height = Height;
|
|
|
|
}
|
2018-04-08 21:17:35 +02:00
|
|
|
|
2018-04-13 20:12:58 +02:00
|
|
|
return;
|
|
|
|
}
|
2018-04-08 21:17:35 +02:00
|
|
|
|
2018-04-13 20:12:58 +02:00
|
|
|
Fb = new FrameBuffer(Width, Height);
|
2018-04-08 21:17:35 +02:00
|
|
|
|
2018-04-13 20:12:58 +02:00
|
|
|
SetupTexture(Fb.TexHandle, Width, Height);
|
2018-04-08 21:17:35 +02:00
|
|
|
|
2018-04-13 20:12:58 +02:00
|
|
|
GL.BindFramebuffer(FramebufferTarget.Framebuffer, Fb.Handle);
|
2018-04-08 21:17:35 +02:00
|
|
|
|
2018-04-13 20:12:58 +02:00
|
|
|
GL.BindRenderbuffer(RenderbufferTarget.Renderbuffer, Fb.RbHandle);
|
2018-04-08 21:17:35 +02:00
|
|
|
|
2018-04-13 20:12:58 +02:00
|
|
|
GL.RenderbufferStorage(
|
|
|
|
RenderbufferTarget.Renderbuffer,
|
|
|
|
RenderbufferStorage.Depth24Stencil8,
|
|
|
|
Width,
|
|
|
|
Height);
|
2018-04-08 21:17:35 +02:00
|
|
|
|
2018-04-13 20:12:58 +02:00
|
|
|
GL.FramebufferRenderbuffer(
|
|
|
|
FramebufferTarget.Framebuffer,
|
|
|
|
FramebufferAttachment.DepthStencilAttachment,
|
|
|
|
RenderbufferTarget.Renderbuffer,
|
|
|
|
Fb.RbHandle);
|
2018-04-08 21:17:35 +02:00
|
|
|
|
2018-04-13 20:12:58 +02:00
|
|
|
GL.FramebufferTexture(
|
|
|
|
FramebufferTarget.Framebuffer,
|
|
|
|
FramebufferAttachment.ColorAttachment0,
|
|
|
|
Fb.TexHandle,
|
|
|
|
0);
|
2018-04-08 21:17:35 +02:00
|
|
|
|
|
|
|
GL.DrawBuffer(DrawBufferMode.ColorAttachment0);
|
2018-04-13 20:12:58 +02:00
|
|
|
|
|
|
|
Fbs.Add(Tag, Fb);
|
2018-04-08 21:17:35 +02:00
|
|
|
}
|
|
|
|
|
2018-04-13 20:12:58 +02:00
|
|
|
public void Bind(long Tag)
|
2018-04-08 21:17:35 +02:00
|
|
|
{
|
2018-04-13 20:12:58 +02:00
|
|
|
if (Fbs.TryGetValue(Tag, out FrameBuffer Fb))
|
2018-04-08 21:17:35 +02:00
|
|
|
{
|
2018-04-13 20:12:58 +02:00
|
|
|
GL.BindFramebuffer(FramebufferTarget.Framebuffer, Fb.Handle);
|
|
|
|
|
|
|
|
CurrFbHandle = Fb.Handle;
|
2018-04-08 21:17:35 +02:00
|
|
|
}
|
2018-04-13 20:12:58 +02:00
|
|
|
}
|
2018-04-08 21:17:35 +02:00
|
|
|
|
2018-04-13 20:12:58 +02:00
|
|
|
public void BindTexture(long Tag, int Index)
|
|
|
|
{
|
|
|
|
if (Fbs.TryGetValue(Tag, out FrameBuffer Fb))
|
|
|
|
{
|
|
|
|
GL.ActiveTexture(TextureUnit.Texture0 + Index);
|
|
|
|
|
|
|
|
GL.BindTexture(TextureTarget.Texture2D, Fb.TexHandle);
|
|
|
|
}
|
2018-04-08 21:17:35 +02:00
|
|
|
}
|
|
|
|
|
2018-04-13 20:12:58 +02:00
|
|
|
public void Set(long Tag)
|
2018-04-08 21:17:35 +02:00
|
|
|
{
|
2018-04-13 20:12:58 +02:00
|
|
|
if (Fbs.TryGetValue(Tag, out FrameBuffer Fb))
|
2018-04-08 21:17:35 +02:00
|
|
|
{
|
2018-04-13 20:12:58 +02:00
|
|
|
CurrTexHandle = Fb.TexHandle;
|
2018-04-08 21:17:35 +02:00
|
|
|
}
|
2018-04-13 20:12:58 +02:00
|
|
|
}
|
2018-04-08 21:17:35 +02:00
|
|
|
|
2018-04-13 20:12:58 +02:00
|
|
|
public void Set(byte[] Data, int Width, int Height)
|
|
|
|
{
|
|
|
|
if (RawFbTexHandle == 0)
|
|
|
|
{
|
|
|
|
RawFbTexHandle = GL.GenTexture();
|
|
|
|
}
|
2018-04-08 21:17:35 +02:00
|
|
|
|
2018-04-13 20:12:58 +02:00
|
|
|
if (RawFbTexWidth != Width ||
|
|
|
|
RawFbTexHeight != Height)
|
|
|
|
{
|
|
|
|
SetupTexture(RawFbTexHandle, Width, Height);
|
2018-04-08 21:17:35 +02:00
|
|
|
|
2018-04-13 20:12:58 +02:00
|
|
|
RawFbTexWidth = Width;
|
|
|
|
RawFbTexHeight = Height;
|
|
|
|
}
|
2018-04-08 21:17:35 +02:00
|
|
|
|
|
|
|
GL.ActiveTexture(TextureUnit.Texture0);
|
|
|
|
|
2018-04-13 20:12:58 +02:00
|
|
|
GL.BindTexture(TextureTarget.Texture2D, RawFbTexHandle);
|
|
|
|
|
|
|
|
(PixelFormat Format, PixelType Type) = OGLEnumConverter.GetTextureFormat(GalTextureFormat.A8B8G8R8);
|
|
|
|
|
|
|
|
GL.TexSubImage2D(TextureTarget.Texture2D, 0, 0, 0, Width, Height, Format, Type, Data);
|
|
|
|
|
|
|
|
CurrTexHandle = RawFbTexHandle;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void SetTransform(Matrix2 Transform, Vector2 Offs)
|
|
|
|
{
|
|
|
|
EnsureInitialized();
|
|
|
|
|
|
|
|
int CurrentProgram = GL.GetInteger(GetPName.CurrentProgram);
|
2018-04-08 21:17:35 +02:00
|
|
|
|
|
|
|
GL.UseProgram(Shader.Handle);
|
|
|
|
|
2018-04-13 20:12:58 +02:00
|
|
|
int TransformUniformLocation = GL.GetUniformLocation(Shader.Handle, "transform");
|
|
|
|
|
|
|
|
GL.UniformMatrix2(TransformUniformLocation, false, ref Transform);
|
|
|
|
|
|
|
|
int OffsetUniformLocation = GL.GetUniformLocation(Shader.Handle, "offset");
|
|
|
|
|
|
|
|
GL.Uniform2(OffsetUniformLocation, ref Offs);
|
|
|
|
|
|
|
|
GL.UseProgram(CurrentProgram);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Render()
|
|
|
|
{
|
|
|
|
if (CurrTexHandle != 0)
|
|
|
|
{
|
|
|
|
EnsureInitialized();
|
|
|
|
|
|
|
|
GL.ActiveTexture(TextureUnit.Texture0);
|
|
|
|
|
|
|
|
GL.BindTexture(TextureTarget.Texture2D, CurrTexHandle);
|
|
|
|
|
|
|
|
int CurrentProgram = GL.GetInteger(GetPName.CurrentProgram);
|
|
|
|
|
|
|
|
GL.BindFramebuffer(FramebufferTarget.Framebuffer, 0);
|
|
|
|
|
|
|
|
GL.BindVertexArray(VaoHandle);
|
|
|
|
|
|
|
|
GL.UseProgram(Shader.Handle);
|
|
|
|
|
|
|
|
GL.DrawArrays(PrimitiveType.TriangleStrip, 0, 4);
|
|
|
|
|
|
|
|
//Restore the original state.
|
|
|
|
GL.BindFramebuffer(FramebufferTarget.Framebuffer, CurrFbHandle);
|
|
|
|
|
|
|
|
GL.UseProgram(CurrentProgram);
|
|
|
|
}
|
2018-04-08 21:17:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private void EnsureInitialized()
|
|
|
|
{
|
|
|
|
if (!IsInitialized)
|
|
|
|
{
|
|
|
|
IsInitialized = true;
|
|
|
|
|
|
|
|
SetupShader();
|
|
|
|
SetupVertex();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void SetupShader()
|
|
|
|
{
|
|
|
|
Shader.VpHandle = GL.CreateShader(ShaderType.VertexShader);
|
|
|
|
Shader.FpHandle = GL.CreateShader(ShaderType.FragmentShader);
|
|
|
|
|
|
|
|
string VpSource = EmbeddedResource.GetString("GlFbVtxShader");
|
|
|
|
string FpSource = EmbeddedResource.GetString("GlFbFragShader");
|
|
|
|
|
|
|
|
GL.ShaderSource(Shader.VpHandle, VpSource);
|
|
|
|
GL.ShaderSource(Shader.FpHandle, FpSource);
|
|
|
|
GL.CompileShader(Shader.VpHandle);
|
|
|
|
GL.CompileShader(Shader.FpHandle);
|
|
|
|
|
|
|
|
Shader.Handle = GL.CreateProgram();
|
|
|
|
|
|
|
|
GL.AttachShader(Shader.Handle, Shader.VpHandle);
|
|
|
|
GL.AttachShader(Shader.Handle, Shader.FpHandle);
|
|
|
|
GL.LinkProgram(Shader.Handle);
|
|
|
|
GL.UseProgram(Shader.Handle);
|
|
|
|
|
2018-04-13 20:12:58 +02:00
|
|
|
Matrix2 Transform = Matrix2.Identity;
|
2018-04-08 21:17:35 +02:00
|
|
|
|
|
|
|
int TexUniformLocation = GL.GetUniformLocation(Shader.Handle, "tex");
|
|
|
|
|
|
|
|
GL.Uniform1(TexUniformLocation, 0);
|
|
|
|
|
|
|
|
int WindowSizeUniformLocation = GL.GetUniformLocation(Shader.Handle, "window_size");
|
|
|
|
|
|
|
|
GL.Uniform2(WindowSizeUniformLocation, new Vector2(1280.0f, 720.0f));
|
|
|
|
|
|
|
|
int TransformUniformLocation = GL.GetUniformLocation(Shader.Handle, "transform");
|
|
|
|
|
|
|
|
GL.UniformMatrix2(TransformUniformLocation, false, ref Transform);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void SetupVertex()
|
|
|
|
{
|
|
|
|
VaoHandle = GL.GenVertexArray();
|
|
|
|
VboHandle = GL.GenBuffer();
|
|
|
|
|
|
|
|
float[] Buffer = new float[]
|
|
|
|
{
|
|
|
|
-1, 1, 0, 0,
|
|
|
|
1, 1, 1, 0,
|
|
|
|
-1, -1, 0, 1,
|
|
|
|
1, -1, 1, 1
|
|
|
|
};
|
|
|
|
|
|
|
|
IntPtr Length = new IntPtr(Buffer.Length * 4);
|
|
|
|
|
|
|
|
GL.BindBuffer(BufferTarget.ArrayBuffer, VboHandle);
|
|
|
|
GL.BufferData(BufferTarget.ArrayBuffer, Length, Buffer, BufferUsageHint.StreamDraw);
|
|
|
|
GL.BindBuffer(BufferTarget.ArrayBuffer, 0);
|
|
|
|
|
|
|
|
GL.BindVertexArray(VaoHandle);
|
|
|
|
|
|
|
|
GL.EnableVertexAttribArray(0);
|
|
|
|
|
|
|
|
GL.BindBuffer(BufferTarget.ArrayBuffer, VboHandle);
|
|
|
|
|
|
|
|
GL.VertexAttribPointer(0, 2, VertexAttribPointerType.Float, false, 16, 0);
|
|
|
|
|
|
|
|
GL.EnableVertexAttribArray(1);
|
|
|
|
|
|
|
|
GL.BindBuffer(BufferTarget.ArrayBuffer, VboHandle);
|
|
|
|
|
|
|
|
GL.VertexAttribPointer(1, 2, VertexAttribPointerType.Float, false, 16, 8);
|
|
|
|
}
|
2018-04-13 20:12:58 +02:00
|
|
|
|
|
|
|
private void SetupTexture(int Handle, int Width, int Height)
|
|
|
|
{
|
|
|
|
GL.BindTexture(TextureTarget.Texture2D, Handle);
|
|
|
|
|
|
|
|
GL.TexParameter(TextureTarget.Texture2D, TextureParameterName.TextureMinFilter, (int)TextureMinFilter.Linear);
|
|
|
|
|
|
|
|
GL.TexParameter(TextureTarget.Texture2D, TextureParameterName.TextureMagFilter, (int)TextureMagFilter.Linear);
|
|
|
|
|
|
|
|
(PixelFormat Format, PixelType Type) = OGLEnumConverter.GetTextureFormat(GalTextureFormat.A8B8G8R8);
|
|
|
|
|
|
|
|
const PixelInternalFormat InternalFmt = PixelInternalFormat.Rgba;
|
|
|
|
|
|
|
|
const int Level = 0;
|
|
|
|
const int Border = 0;
|
|
|
|
|
|
|
|
GL.TexImage2D(
|
|
|
|
TextureTarget.Texture2D,
|
|
|
|
Level,
|
|
|
|
InternalFmt,
|
|
|
|
Width,
|
|
|
|
Height,
|
|
|
|
Border,
|
|
|
|
Format,
|
|
|
|
Type,
|
|
|
|
IntPtr.Zero);
|
|
|
|
}
|
2018-04-08 21:17:35 +02:00
|
|
|
}
|
|
|
|
}
|