forked from MeloNX/MeloNX
replace opentk deprecated size property
(cherry picked from commit e65dc4521353b5cc275ece53fa6367d471fdecba)
This commit is contained in:
parent
c90b78499b
commit
0394a39342
@ -1,4 +1,4 @@
|
|||||||
using LibRyujinx.Sample;
|
using LibRyujinx.Sample;
|
||||||
using OpenTK.Mathematics;
|
using OpenTK.Mathematics;
|
||||||
using OpenTK.Windowing.Common;
|
using OpenTK.Windowing.Common;
|
||||||
using OpenTK.Windowing.Desktop;
|
using OpenTK.Windowing.Desktop;
|
||||||
@ -15,8 +15,8 @@ namespace LibRyujinx.NativeSample
|
|||||||
success = LibRyujinxInterop.InitializeGraphics(new GraphicsConfiguration());
|
success = LibRyujinxInterop.InitializeGraphics(new GraphicsConfiguration());
|
||||||
var nativeWindowSettings = new NativeWindowSettings()
|
var nativeWindowSettings = new NativeWindowSettings()
|
||||||
{
|
{
|
||||||
Size = new Vector2i(800, 600),
|
ClientSize = new Vector2i(800, 600),
|
||||||
Title = "Ryujinx",
|
Title = "Ryujinx Native",
|
||||||
API = ContextAPI.NoAPI,
|
API = ContextAPI.NoAPI,
|
||||||
IsEventDriven = false,
|
IsEventDriven = false,
|
||||||
// This is needed to run on macos
|
// This is needed to run on macos
|
||||||
|
Loading…
x
Reference in New Issue
Block a user