aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/Multithreading/ThreadedWindow.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.GAL/Multithreading/ThreadedWindow.cs')
-rw-r--r--Ryujinx.Graphics.GAL/Multithreading/ThreadedWindow.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Ryujinx.Graphics.GAL/Multithreading/ThreadedWindow.cs b/Ryujinx.Graphics.GAL/Multithreading/ThreadedWindow.cs
index dc0b4dc5..c8045502 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/ThreadedWindow.cs
+++ b/Ryujinx.Graphics.GAL/Multithreading/ThreadedWindow.cs
@@ -8,12 +8,12 @@ namespace Ryujinx.Graphics.GAL.Multithreading
public class ThreadedWindow : IWindow
{
private ThreadedRenderer _renderer;
- private IWindow _impl;
+ private IRenderer _impl;
- public ThreadedWindow(ThreadedRenderer renderer, IWindow window)
+ public ThreadedWindow(ThreadedRenderer renderer, IRenderer impl)
{
_renderer = renderer;
- _impl = window;
+ _impl = impl;
}
public void Present(ITexture texture, ImageCrop crop, Action<object> swapBuffersCallback)
@@ -28,7 +28,7 @@ namespace Ryujinx.Graphics.GAL.Multithreading
public void SetSize(int width, int height)
{
- _impl.SetSize(width, height);
+ _impl.Window.SetSize(width, height);
}
}
}