diff options
| author | riperiperi <rhy3756547@hotmail.com> | 2020-11-20 16:30:59 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-20 13:30:59 -0300 |
| commit | cf7044e37bc628f25525941d25b830594b833428 (patch) | |
| tree | 3da120676707d1ee7f4c2fcc2273ce036d6fd821 /Ryujinx.Graphics.OpenGL/Image/TextureBase.cs | |
| parent | 9852cb9c9ea3793eaef405ebb671052bb4b6643a (diff) | |
Perform Compressed<->Uncompressed copies using Pixel Buffer Objects (#1732)
* PBO single layer copy, part 1
Still needs ability to take and set width/height slices. (using pack paramaters)
* PBO Copies pt 2
* Some fixes and cleanup.
* Misc Cleanup
* Move handle into the TextureInfo interface.
This interface is shared between texture storages and views.
* Move unscaled copy to the TextureCopy class.
* Address feedback.
Diffstat (limited to 'Ryujinx.Graphics.OpenGL/Image/TextureBase.cs')
| -rw-r--r-- | Ryujinx.Graphics.OpenGL/Image/TextureBase.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.OpenGL/Image/TextureBase.cs b/Ryujinx.Graphics.OpenGL/Image/TextureBase.cs index 2e70fa82..ebf0cacc 100644 --- a/Ryujinx.Graphics.OpenGL/Image/TextureBase.cs +++ b/Ryujinx.Graphics.OpenGL/Image/TextureBase.cs @@ -3,7 +3,7 @@ using Ryujinx.Graphics.GAL; namespace Ryujinx.Graphics.OpenGL.Image { - class TextureBase + class TextureBase : ITextureInfo { public int Handle { get; protected set; } |
