Try again

This commit is contained in:
Isaac Marovitz 2024-03-18 15:03:10 -04:00 committed by Isaac Marovitz
parent d88314424b
commit b8c60e993a

View file

@ -1,14 +1,20 @@
using SharpMetal.QuartzCore;
using System.Runtime.Versioning;
using System;
namespace Ryujinx.Ava.UI.Renderer
{
[SupportedOSPlatform("macos")]
public class EmbeddedWindowMetal : EmbeddedWindow
{
public CAMetalLayer CreateSurface()
{
return new CAMetalLayer(MetalLayer);
if (OperatingSystem.IsMacOS())
{
return new CAMetalLayer(MetalLayer);
}
else
{
throw new NotSupportedException();
}
}
}
}