diff options
author | gdkchan <gab.dark.100@gmail.com> | 2020-04-25 10:02:18 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-25 23:02:18 +1000 |
commit | 3cb1fa0e853efc04cc183d3ee75ec1bbe2c845a4 (patch) | |
tree | cf19d371b99cffdbff03e2f20271927cb7b08bf8 /Ryujinx.Graphics.OpenGL/TextureBase.cs | |
parent | a065dc1626d2fa4cb5c7300a1aa8713ffb4f5896 (diff) |
Implement texture buffers (#1152)
* Implement texture buffers
* Throw NotSupportedException where appropriate
Diffstat (limited to 'Ryujinx.Graphics.OpenGL/TextureBase.cs')
-rw-r--r-- | Ryujinx.Graphics.OpenGL/TextureBase.cs | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.OpenGL/TextureBase.cs b/Ryujinx.Graphics.OpenGL/TextureBase.cs new file mode 100644 index 00000000..f4ab0bda --- /dev/null +++ b/Ryujinx.Graphics.OpenGL/TextureBase.cs @@ -0,0 +1,39 @@ +using OpenTK.Graphics.OpenGL; +using Ryujinx.Graphics.GAL; +using System; +using System.Collections.Generic; +using System.Text; + +namespace Ryujinx.Graphics.OpenGL +{ + class TextureBase + { + public int Handle { get; protected set; } + + protected TextureCreateInfo Info { get; } + + public int Width => Info.Width; + public int Height => Info.Height; + + public Target Target => Info.Target; + public Format Format => Info.Format; + + public TextureBase(TextureCreateInfo info) + { + Info = info; + + 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); + } + } +} |