-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to set custom resolution? #53
Comments
usually, it's a timing problem. Change the color format to |
Maybe my Stacktrace: |
these files might be useful as an example for grid management (mosaic v2) set of APIs: otherwise, I have no new input here; the driver can reject a timing for absolutely any reason and NVAPI is not great with error messages. so my guess is the same as before.
|
There is six types of display in NVAPI:
|
I need a beer on this weekend, and try again..... |
Hello, I'm also facing issues setting a custom resolution using this library.
Error NVAPI_ERROR: |
I got the same problem. But when I use the overload with refreshRate of CustomResolution() it works. With ColorFormat I never got it to work. |
Hi! This part of code doesn't work
var displayTest = new DisplayDevice(2147881091);
var timing = displayTest.CalculateTiming(800, 600, 60, false);
var res1 = new CustomResolution(800, 600, NvAPIWrapper.Native.Display.ColorFormat.P8, timing);
displayTest.TrialCustomResolution(res1);
displayTest.SaveCustomResolution();
Crashed on TrialCustomResolution (NvAPI error).
Help please
The text was updated successfully, but these errors were encountered: