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;
|
|
|
|
|
2020-05-23 11:46:09 +02:00
|
|
|
namespace Ryujinx.Graphics.OpenGL.Image
|
2019-10-13 08:02:07 +02:00
|
|
|
{
|
2021-04-17 22:16:28 +02:00
|
|
|
class TextureStorage : ITextureInfo
|
2019-10-13 08:02:07 +02:00
|
|
|
{
|
2021-04-17 22:16:28 +02:00
|
|
|
public ITextureInfo Storage => this;
|
2019-10-13 08:02:07 +02:00
|
|
|
public int Handle { get; private set; }
|
2020-07-07 04:41:07 +02:00
|
|
|
public float ScaleFactor { get; private set; }
|
2019-10-13 08:02:07 +02:00
|
|
|
|
2020-03-29 14:48:39 +02:00
|
|
|
public TextureCreateInfo Info { get; }
|
2019-10-13 08:02:07 +02:00
|
|
|
|
2020-03-29 14:48:39 +02:00
|
|
|
private readonly Renderer _renderer;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
|
|
private int _viewsCount;
|
|
|
|
|
2020-09-10 21:44:04 +02:00
|
|
|
internal ITexture DefaultView { get; private set; }
|
|
|
|
|
2020-07-07 04:41:07 +02:00
|
|
|
public TextureStorage(Renderer renderer, TextureCreateInfo info, float scaleFactor)
|
2019-10-13 08:02:07 +02:00
|
|
|
{
|
|
|
|
_renderer = renderer;
|
2020-03-29 14:48:39 +02:00
|
|
|
Info = info;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
|
|
Handle = GL.GenTexture();
|
2020-07-07 04:41:07 +02:00
|
|
|
ScaleFactor = scaleFactor;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
|
|
CreateImmutableStorage();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void CreateImmutableStorage()
|
|
|
|
{
|
2020-03-29 14:48:39 +02:00
|
|
|
TextureTarget target = Info.Target.Convert();
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
|
|
GL.ActiveTexture(TextureUnit.Texture0);
|
|
|
|
|
|
|
|
GL.BindTexture(target, Handle);
|
|
|
|
|
2020-03-29 14:48:39 +02:00
|
|
|
FormatInfo format = FormatTable.GetFormatInfo(Info.Format);
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
|
|
SizedInternalFormat internalFormat;
|
|
|
|
|
|
|
|
if (format.IsCompressed)
|
|
|
|
{
|
|
|
|
internalFormat = (SizedInternalFormat)format.PixelFormat;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
internalFormat = (SizedInternalFormat)format.PixelInternalFormat;
|
|
|
|
}
|
|
|
|
|
2020-03-29 14:48:39 +02:00
|
|
|
switch (Info.Target)
|
2019-10-13 08:02:07 +02:00
|
|
|
{
|
|
|
|
case Target.Texture1D:
|
|
|
|
GL.TexStorage1D(
|
|
|
|
TextureTarget1d.Texture1D,
|
2020-03-29 14:48:39 +02:00
|
|
|
Info.Levels,
|
2019-10-13 08:02:07 +02:00
|
|
|
internalFormat,
|
2020-10-29 22:57:34 +01:00
|
|
|
Info.Width);
|
2019-10-13 08:02:07 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Target.Texture1DArray:
|
|
|
|
GL.TexStorage2D(
|
|
|
|
TextureTarget2d.Texture1DArray,
|
2020-03-29 14:48:39 +02:00
|
|
|
Info.Levels,
|
2019-10-13 08:02:07 +02:00
|
|
|
internalFormat,
|
2020-10-29 22:57:34 +01:00
|
|
|
Info.Width,
|
|
|
|
Info.Height);
|
2019-10-13 08:02:07 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Target.Texture2D:
|
|
|
|
GL.TexStorage2D(
|
|
|
|
TextureTarget2d.Texture2D,
|
2020-03-29 14:48:39 +02:00
|
|
|
Info.Levels,
|
2019-10-13 08:02:07 +02:00
|
|
|
internalFormat,
|
2020-10-29 22:57:34 +01:00
|
|
|
Info.Width,
|
|
|
|
Info.Height);
|
2019-10-13 08:02:07 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Target.Texture2DArray:
|
|
|
|
GL.TexStorage3D(
|
|
|
|
TextureTarget3d.Texture2DArray,
|
2020-03-29 14:48:39 +02:00
|
|
|
Info.Levels,
|
2019-10-13 08:02:07 +02:00
|
|
|
internalFormat,
|
2020-10-29 22:57:34 +01:00
|
|
|
Info.Width,
|
|
|
|
Info.Height,
|
2020-03-29 14:48:39 +02:00
|
|
|
Info.Depth);
|
2019-10-13 08:02:07 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Target.Texture2DMultisample:
|
|
|
|
GL.TexStorage2DMultisample(
|
|
|
|
TextureTargetMultisample2d.Texture2DMultisample,
|
2020-03-29 14:48:39 +02:00
|
|
|
Info.Samples,
|
2019-10-13 08:02:07 +02:00
|
|
|
internalFormat,
|
2020-10-29 22:57:34 +01:00
|
|
|
Info.Width,
|
|
|
|
Info.Height,
|
2019-10-13 08:02:07 +02:00
|
|
|
true);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Target.Texture2DMultisampleArray:
|
|
|
|
GL.TexStorage3DMultisample(
|
|
|
|
TextureTargetMultisample3d.Texture2DMultisampleArray,
|
2020-03-29 14:48:39 +02:00
|
|
|
Info.Samples,
|
2019-10-13 08:02:07 +02:00
|
|
|
internalFormat,
|
2020-10-29 22:57:34 +01:00
|
|
|
Info.Width,
|
|
|
|
Info.Height,
|
2020-03-29 14:48:39 +02:00
|
|
|
Info.Depth,
|
2019-10-13 08:02:07 +02:00
|
|
|
true);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Target.Texture3D:
|
|
|
|
GL.TexStorage3D(
|
|
|
|
TextureTarget3d.Texture3D,
|
2020-03-29 14:48:39 +02:00
|
|
|
Info.Levels,
|
2019-10-13 08:02:07 +02:00
|
|
|
internalFormat,
|
2020-10-29 22:57:34 +01:00
|
|
|
Info.Width,
|
|
|
|
Info.Height,
|
2020-03-29 14:48:39 +02:00
|
|
|
Info.Depth);
|
2019-10-13 08:02:07 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Target.Cubemap:
|
|
|
|
GL.TexStorage2D(
|
|
|
|
TextureTarget2d.TextureCubeMap,
|
2020-03-29 14:48:39 +02:00
|
|
|
Info.Levels,
|
2019-10-13 08:02:07 +02:00
|
|
|
internalFormat,
|
2020-10-29 22:57:34 +01:00
|
|
|
Info.Width,
|
|
|
|
Info.Height);
|
2019-10-13 08:02:07 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Target.CubemapArray:
|
|
|
|
GL.TexStorage3D(
|
|
|
|
(TextureTarget3d)All.TextureCubeMapArray,
|
2020-03-29 14:48:39 +02:00
|
|
|
Info.Levels,
|
2019-10-13 08:02:07 +02:00
|
|
|
internalFormat,
|
2020-10-29 22:57:34 +01:00
|
|
|
Info.Width,
|
|
|
|
Info.Height,
|
2020-03-29 14:48:39 +02:00
|
|
|
Info.Depth);
|
2019-10-13 08:02:07 +02:00
|
|
|
break;
|
2019-12-29 00:45:33 +01:00
|
|
|
|
|
|
|
default:
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Debug?.Print(LogClass.Gpu, $"Invalid or unsupported texture target: {target}.");
|
2019-12-29 00:45:33 +01:00
|
|
|
break;
|
2019-10-13 08:02:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public ITexture CreateDefaultView()
|
|
|
|
{
|
2020-09-10 21:44:04 +02:00
|
|
|
DefaultView = CreateView(Info, 0, 0);
|
|
|
|
|
|
|
|
return DefaultView;
|
2019-10-13 08:02:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public ITexture CreateView(TextureCreateInfo info, int firstLayer, int firstLevel)
|
|
|
|
{
|
|
|
|
IncrementViewsCount();
|
|
|
|
|
|
|
|
return new TextureView(_renderer, this, info, firstLayer, firstLevel);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void IncrementViewsCount()
|
|
|
|
{
|
|
|
|
_viewsCount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void DecrementViewsCount()
|
|
|
|
{
|
|
|
|
// If we don't have any views, then the storage is now useless, delete it.
|
|
|
|
if (--_viewsCount == 0)
|
|
|
|
{
|
2020-09-10 21:44:04 +02:00
|
|
|
if (DefaultView == null)
|
|
|
|
{
|
|
|
|
Dispose();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// If the default view still exists, we can put it into the resource pool.
|
|
|
|
Release();
|
|
|
|
}
|
2019-10-13 08:02:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-10 21:44:04 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Release the TextureStorage to the resource pool without disposing its handle.
|
|
|
|
/// </summary>
|
|
|
|
public void Release()
|
|
|
|
{
|
|
|
|
_viewsCount = 1; // When we are used again, we will have the default view.
|
|
|
|
|
|
|
|
_renderer.ResourcePool.AddTexture((TextureView)DefaultView);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void DeleteDefault()
|
|
|
|
{
|
|
|
|
DefaultView = null;
|
|
|
|
}
|
|
|
|
|
2019-10-13 08:02:07 +02:00
|
|
|
public void Dispose()
|
|
|
|
{
|
2020-09-10 21:44:04 +02:00
|
|
|
DefaultView = null;
|
|
|
|
|
2019-10-13 08:02:07 +02:00
|
|
|
if (Handle != 0)
|
|
|
|
{
|
|
|
|
GL.DeleteTexture(Handle);
|
|
|
|
|
|
|
|
Handle = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|