2020-04-25 06:02:18 -07:00
|
|
|
|
using OpenTK.Graphics.OpenGL;
|
|
|
|
|
using Ryujinx.Graphics.GAL;
|
|
|
|
|
|
2020-05-23 02:46:09 -07:00
|
|
|
|
namespace Ryujinx.Graphics.OpenGL.Image
|
2020-04-25 06:02:18 -07:00
|
|
|
|
{
|
2020-11-20 08:30:59 -08:00
|
|
|
|
class TextureBase : ITextureInfo
|
2020-04-25 06:02:18 -07:00
|
|
|
|
{
|
|
|
|
|
public int Handle { get; protected set; }
|
|
|
|
|
|
2020-07-25 20:03:40 -07:00
|
|
|
|
public TextureCreateInfo Info { get; }
|
2020-04-25 06:02:18 -07:00
|
|
|
|
|
2020-10-29 14:57:34 -07:00
|
|
|
|
public int Width => Info.Width;
|
|
|
|
|
public int Height => Info.Height;
|
2020-07-06 19:41:07 -07:00
|
|
|
|
public float ScaleFactor { get; }
|
2020-04-25 06:02:18 -07:00
|
|
|
|
|
|
|
|
|
public Target Target => Info.Target;
|
|
|
|
|
public Format Format => Info.Format;
|
|
|
|
|
|
2020-07-06 19:41:07 -07:00
|
|
|
|
public TextureBase(TextureCreateInfo info, float scaleFactor = 1f)
|
2020-04-25 06:02:18 -07:00
|
|
|
|
{
|
|
|
|
|
Info = info;
|
2020-07-06 19:41:07 -07:00
|
|
|
|
ScaleFactor = scaleFactor;
|
2020-04-25 06:02:18 -07:00
|
|
|
|
|
|
|
|
|
Handle = GL.GenTexture();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Bind(int unit)
|
|
|
|
|
{
|
|
|
|
|
Bind(Target.Convert(), unit);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void Bind(TextureTarget target, int unit)
|
|
|
|
|
{
|
|
|
|
|
GL.ActiveTexture(TextureUnit.Texture0 + unit);
|
|
|
|
|
GL.BindTexture(target, Handle);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|