* Rename Ryujinx.UI.Common * Rename Ryujinx.UI.LocaleGenerator * Update in Files AboutWindow * Configuration State * Rename projects * Ryujinx/UI * Fix build * Main remaining inconsistencies * HLE.UI Namespace * HLE.UI Files * Namespace * Ryujinx.UI.Common.Configuration.UI * Ryujinx.UI.Common,Configuration.UI Files * More instances
69 lines
1.8 KiB
C#
69 lines
1.8 KiB
C#
using Avalonia;
|
|
using Avalonia.Controls;
|
|
using Ryujinx.Common.Configuration;
|
|
using Ryujinx.UI.Common.Configuration;
|
|
using System;
|
|
|
|
namespace Ryujinx.Ava.UI.Renderer
|
|
{
|
|
public partial class RendererHost : UserControl, IDisposable
|
|
{
|
|
public readonly EmbeddedWindow EmbeddedWindow;
|
|
|
|
public event EventHandler<EventArgs> WindowCreated;
|
|
public event Action<object, Size> BoundsChanged;
|
|
|
|
public RendererHost()
|
|
{
|
|
InitializeComponent();
|
|
|
|
if (ConfigurationState.Instance.Graphics.GraphicsBackend.Value == GraphicsBackend.OpenGl)
|
|
{
|
|
EmbeddedWindow = new EmbeddedWindowOpenGL();
|
|
}
|
|
else
|
|
{
|
|
EmbeddedWindow = new EmbeddedWindowVulkan();
|
|
}
|
|
|
|
Initialize();
|
|
}
|
|
|
|
private void Initialize()
|
|
{
|
|
EmbeddedWindow.WindowCreated += CurrentWindow_WindowCreated;
|
|
EmbeddedWindow.BoundsChanged += CurrentWindow_BoundsChanged;
|
|
|
|
Content = EmbeddedWindow;
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
if (EmbeddedWindow != null)
|
|
{
|
|
EmbeddedWindow.WindowCreated -= CurrentWindow_WindowCreated;
|
|
EmbeddedWindow.BoundsChanged -= CurrentWindow_BoundsChanged;
|
|
}
|
|
|
|
GC.SuppressFinalize(this);
|
|
}
|
|
|
|
protected override void OnDetachedFromVisualTree(VisualTreeAttachmentEventArgs e)
|
|
{
|
|
base.OnDetachedFromVisualTree(e);
|
|
|
|
Dispose();
|
|
}
|
|
|
|
private void CurrentWindow_BoundsChanged(object sender, Size e)
|
|
{
|
|
BoundsChanged?.Invoke(sender, e);
|
|
}
|
|
|
|
private void CurrentWindow_WindowCreated(object sender, IntPtr e)
|
|
{
|
|
WindowCreated?.Invoke(this, EventArgs.Empty);
|
|
}
|
|
}
|
|
}
|