Improved and simplified window texture presentation

This commit is contained in:
gdk 2019-11-23 23:24:03 -03:00 committed by Thog
parent e8e4133745
commit 8c26739c58
11 changed files with 137 additions and 497 deletions

View file

@ -2,11 +2,7 @@ namespace Ryujinx.Graphics.GAL
{
public interface IWindow
{
void Present();
void QueueTexture(ITexture texture, ImageCrop crop, object context);
void RegisterTextureReleaseCallback(TextureReleaseCallback callback);
void Present(ITexture texture, ImageCrop crop);
void SetSize(int width, int height);
}