aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.OpenGL/TextureBase.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2020-05-23 06:46:09 -0300
committerGitHub <noreply@github.com>2020-05-23 11:46:09 +0200
commit5011640b3086b86b0f0b39b60fdb2aa946d4f5c8 (patch)
tree1bd60b7714886dfe282ca1e52cfa6fca97912cdf /Ryujinx.Graphics.OpenGL/TextureBase.cs
parentcc8dbdd3fb58a02e1c3fc3b9d0b1c35bc7b9d00f (diff)
Spanify Graphics Abstraction Layer (#1226)
* Spanify Graphics Abstraction Layer * Be explicit about BufferHandle size
Diffstat (limited to 'Ryujinx.Graphics.OpenGL/TextureBase.cs')
-rw-r--r--Ryujinx.Graphics.OpenGL/TextureBase.cs39
1 files changed, 0 insertions, 39 deletions
diff --git a/Ryujinx.Graphics.OpenGL/TextureBase.cs b/Ryujinx.Graphics.OpenGL/TextureBase.cs
deleted file mode 100644
index f4ab0bda..00000000
--- a/Ryujinx.Graphics.OpenGL/TextureBase.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-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);
- }
- }
-}