Skip to content
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

DXGI sets negative value for UMD version #3983

Closed
talkingerbil opened this issue May 3, 2024 · 1 comment · Fixed by #3985
Closed

DXGI sets negative value for UMD version #3983

talkingerbil opened this issue May 3, 2024 · 1 comment · Fixed by #3985

Comments

@talkingerbil
Copy link
Contributor

talkingerbil commented May 3, 2024

if (SUCCEEDED(hr) && pUMDVersion)
pUMDVersion->QuadPart = ~0ull;

Above code sets a max-allowable 64bit unsigned int. Not only is this technically not to spec (signed int):

https://learn.microsoft.com/en-us/windows/win32/api/dxgi/nf-dxgi-idxgiadapter-checkinterfacesupport
https://learn.microsoft.com/en-us/windows/win32/api/winnt/ns-winnt-large_integer-r1

but some apps then extract the (now obviously) negative value associated with those final 16 bits when parsing the individual UMD quad values. Hence we start seeing errors such as this:

screenshot

which in this example was actually looking for at least UMD = 31.00.24027.1012.

The assignment should instead be something like:

pUMDVersion->QuadPart = ~0ull ^ (1ull << 63);

or:

pUMDVersion->QuadPart = ~(1ull << 63);

or:

pUMDVersion->QuadPart = 0x7FFFFFFFFFFFFFFF;

This would obviously lead to smaller values in the major element of the UMD quad, but.... will any of us ever see a driver version that large??

@misyltoad
Copy link
Collaborator

misyltoad commented May 3, 2024

Feel free to make an MR to set it to INT64_MAX or std numeric limits int64_t max if it fixes Star Citizen.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants