diff options
| author | gdk <gab.dark.100@gmail.com> | 2019-10-31 21:32:43 -0300 |
|---|---|---|
| committer | Thog <thog@protonmail.com> | 2020-01-09 02:13:00 +0100 |
| commit | 63345a3098e05e0d0692bc46852dfbfccfdcfae2 (patch) | |
| tree | 10200d9a5c34db06d936502c71b4997c17aa304f /Ryujinx.Graphics.GAL/IWindow.cs | |
| parent | 278a4c317c0b87add67cc9ebc904afe1db23a031 (diff) | |
Support window resizing
Diffstat (limited to 'Ryujinx.Graphics.GAL/IWindow.cs')
| -rw-r--r-- | Ryujinx.Graphics.GAL/IWindow.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.Graphics.GAL/IWindow.cs b/Ryujinx.Graphics.GAL/IWindow.cs index a0e5f196..3d5130c2 100644 --- a/Ryujinx.Graphics.GAL/IWindow.cs +++ b/Ryujinx.Graphics.GAL/IWindow.cs @@ -1,5 +1,3 @@ -using System; - namespace Ryujinx.Graphics.GAL { public interface IWindow @@ -9,5 +7,7 @@ namespace Ryujinx.Graphics.GAL void QueueTexture(ITexture texture, ImageCrop crop, object context); void RegisterTextureReleaseCallback(TextureReleaseCallback callback); + + void SetSize(int width, int height); } } |
