mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 08:45:29 +00:00
083caef1c1
Window State support (minimize and maximize) Preliminary full screen support. Preliminary support for changing the screen resolution.
52 lines
1.8 KiB
C#
52 lines
1.8 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Diagnostics;
|
|
|
|
|
|
namespace OpenTK.Platform.MacOS.Carbon
|
|
{
|
|
// Quartz Display services used here are available in MacOS X 10.3 and later.
|
|
|
|
enum CGDisplayErr
|
|
{
|
|
|
|
}
|
|
|
|
public static class CG
|
|
{
|
|
const string appServices = "/System/Library/Frameworks/ApplicationServices.framework/Versions/Current/ApplicationServices";
|
|
|
|
// CGPoint -> HIPoint
|
|
// CGSize -> HISize
|
|
// CGRect -> HIRect
|
|
|
|
[DllImport(appServices,EntryPoint="CGGetActiveDisplayList")]
|
|
internal unsafe static extern CGDisplayErr GetActiveDisplayList(int maxDisplays, IntPtr* activeDspys, out int dspyCnt);
|
|
|
|
[DllImport(appServices,EntryPoint="CGMainDisplayID")]
|
|
internal static extern IntPtr MainDisplayID();
|
|
|
|
[DllImport(appServices,EntryPoint="CGDisplayPixelsWide")]
|
|
internal static extern int DisplayPixelsWide(IntPtr display);
|
|
|
|
[DllImport(appServices,EntryPoint="CGDisplayPixelsHigh")]
|
|
internal static extern int DisplayPixelsHigh(IntPtr display);
|
|
|
|
[DllImport(appServices,EntryPoint="CGDisplayCurrentMode")]
|
|
internal static extern IntPtr DisplayCurrentMode(IntPtr display);
|
|
|
|
[DllImport(appServices,EntryPoint="CGDisplayCapture")]
|
|
internal static extern CGDisplayErr DisplayCapture(IntPtr display);
|
|
|
|
[DllImport(appServices,EntryPoint="CGDisplayRelease")]
|
|
internal static extern CGDisplayErr DisplayRelease(IntPtr display);
|
|
|
|
[DllImport(appServices, EntryPoint = "CGDisplayAvailableModes")]
|
|
internal static extern IntPtr DisplayAvailableModes(IntPtr display);
|
|
|
|
[DllImport(appServices, EntryPoint = "CGDisplaySwitchToMode")]
|
|
internal static extern IntPtr DisplaySwitchToMode(IntPtr display, IntPtr displayMode);
|
|
|
|
}
|
|
}
|