2019-10-13 08:02:07 +02:00
|
|
|
using OpenTK.Graphics.OpenGL;
|
|
|
|
using Ryujinx.Graphics.GAL;
|
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.OpenGL
|
|
|
|
{
|
2020-05-23 11:46:09 +02:00
|
|
|
static class Buffer
|
2019-10-13 08:02:07 +02:00
|
|
|
{
|
2021-01-12 22:50:54 +01:00
|
|
|
public static void Clear(BufferHandle destination, int offset, int size, uint value)
|
|
|
|
{
|
|
|
|
GL.BindBuffer(BufferTarget.CopyWriteBuffer, destination.ToInt32());
|
|
|
|
|
|
|
|
unsafe
|
|
|
|
{
|
|
|
|
uint* valueArr = stackalloc uint[1];
|
|
|
|
|
|
|
|
valueArr[0] = value;
|
|
|
|
|
|
|
|
GL.ClearBufferSubData(
|
|
|
|
BufferTarget.CopyWriteBuffer,
|
|
|
|
PixelInternalFormat.Rgba8ui,
|
|
|
|
(IntPtr)offset,
|
|
|
|
(IntPtr)size,
|
|
|
|
PixelFormat.RgbaInteger,
|
|
|
|
PixelType.UnsignedByte,
|
|
|
|
(IntPtr)valueArr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-25 21:23:42 +01:00
|
|
|
public static BufferHandle Create()
|
|
|
|
{
|
|
|
|
return Handle.FromInt32<BufferHandle>(GL.GenBuffer());
|
|
|
|
}
|
|
|
|
|
2020-05-23 11:46:09 +02:00
|
|
|
public static BufferHandle Create(int size)
|
2019-10-13 08:02:07 +02:00
|
|
|
{
|
2020-05-23 11:46:09 +02:00
|
|
|
int handle = GL.GenBuffer();
|
2019-10-13 08:02:07 +02:00
|
|
|
|
2020-05-23 11:46:09 +02:00
|
|
|
GL.BindBuffer(BufferTarget.CopyWriteBuffer, handle);
|
2019-10-13 08:02:07 +02:00
|
|
|
GL.BufferData(BufferTarget.CopyWriteBuffer, size, IntPtr.Zero, BufferUsageHint.DynamicDraw);
|
2020-05-23 11:46:09 +02:00
|
|
|
|
|
|
|
return Handle.FromInt32<BufferHandle>(handle);
|
2019-10-13 08:02:07 +02:00
|
|
|
}
|
|
|
|
|
2020-05-23 11:46:09 +02:00
|
|
|
public static void Copy(BufferHandle source, BufferHandle destination, int srcOffset, int dstOffset, int size)
|
2019-10-13 08:02:07 +02:00
|
|
|
{
|
2020-05-23 11:46:09 +02:00
|
|
|
GL.BindBuffer(BufferTarget.CopyReadBuffer, source.ToInt32());
|
|
|
|
GL.BindBuffer(BufferTarget.CopyWriteBuffer, destination.ToInt32());
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
|
|
GL.CopyBufferSubData(
|
|
|
|
BufferTarget.CopyReadBuffer,
|
|
|
|
BufferTarget.CopyWriteBuffer,
|
|
|
|
(IntPtr)srcOffset,
|
|
|
|
(IntPtr)dstOffset,
|
|
|
|
(IntPtr)size);
|
|
|
|
}
|
|
|
|
|
2020-05-23 11:46:09 +02:00
|
|
|
public static byte[] GetData(BufferHandle buffer, int offset, int size)
|
2019-10-13 08:02:07 +02:00
|
|
|
{
|
2020-05-23 11:46:09 +02:00
|
|
|
GL.BindBuffer(BufferTarget.CopyReadBuffer, buffer.ToInt32());
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
|
|
byte[] data = new byte[size];
|
|
|
|
|
|
|
|
GL.GetBufferSubData(BufferTarget.CopyReadBuffer, (IntPtr)offset, size, data);
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2020-10-25 21:23:42 +01:00
|
|
|
public static void Resize(BufferHandle handle, int size)
|
|
|
|
{
|
|
|
|
GL.BindBuffer(BufferTarget.CopyWriteBuffer, handle.ToInt32());
|
|
|
|
GL.BufferData(BufferTarget.CopyWriteBuffer, size, IntPtr.Zero, BufferUsageHint.StreamCopy);
|
|
|
|
}
|
|
|
|
|
2020-05-23 11:46:09 +02:00
|
|
|
public static void SetData(BufferHandle buffer, int offset, ReadOnlySpan<byte> data)
|
2019-10-13 08:02:07 +02:00
|
|
|
{
|
2020-05-23 11:46:09 +02:00
|
|
|
GL.BindBuffer(BufferTarget.CopyWriteBuffer, buffer.ToInt32());
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
|
|
unsafe
|
|
|
|
{
|
|
|
|
fixed (byte* ptr = data)
|
|
|
|
{
|
|
|
|
GL.BufferSubData(BufferTarget.CopyWriteBuffer, (IntPtr)offset, data.Length, (IntPtr)ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-23 11:46:09 +02:00
|
|
|
public static void Delete(BufferHandle buffer)
|
2019-10-13 08:02:07 +02:00
|
|
|
{
|
2020-05-23 11:46:09 +02:00
|
|
|
GL.DeleteBuffer(buffer.ToInt32());
|
2019-10-13 08:02:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|