aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.OpenGL/Image/ITextureInfo.cs
AgeCommit message (Collapse)Author
2023-04-27Move solution and projects to srcTSR Berry
2021-04-17Fix intel view copy workaround. (#2216)riperiperi
The texture target must be taken from the storage rather than the view, when using the storage handle for the copy.
2021-04-13Fix sub-image copies on intel GPUs (#2198)gdkchan
2020-11-20Perform Compressed<->Uncompressed copies using Pixel Buffer Objects (#1732)riperiperi
* 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.