-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New gamma test, reduced test count to 6x6, lots of bug fixes, system …
…uptime check, new debug settings, revised case design, new gamma processing (cubic interpolation), new FPS setting options
- Loading branch information
Showing
25 changed files
with
1,855 additions
and
491 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Management; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace OSRTT_Launcher | ||
{ | ||
class DisplayInitCheck | ||
{ | ||
public void getMonitorInitTime() | ||
{ | ||
ManagementObjectSearcher win32Monitor = new ManagementObjectSearcher("select * from Win32_DesktopMonitor"); | ||
|
||
foreach (ManagementObject obj in win32Monitor.Get()) | ||
{ | ||
|
||
Console.WriteLine(obj["ScreenWidth"].ToString()); | ||
Console.WriteLine(obj["ScreenHeight"].ToString()); | ||
Console.WriteLine(obj["Manufacturer"].ToString()); | ||
Console.WriteLine(obj["DeviceID"].ToString()); | ||
Console.WriteLine(obj["InstallDate"].ToString()); | ||
} | ||
} | ||
|
||
} | ||
} |
Oops, something went wrong.