We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In the presentCallback function,
ComPtr<ID3D11DeviceContext> ctx; ComPtr<ID3D11Multithread> multithread; hr = ctx.As(&multithread); if (hr != S_OK) throw std::system_error(hr, std::system_category()); multithread->SetMultithreadProtected(true);
ComPtr<ID3D11DeviceContext> ctx;
ComPtr<ID3D11Multithread> multithread;
hr = ctx.As(&multithread);
if (hr != S_OK) throw std::system_error(hr, std::system_category());
multithread->SetMultithreadProtected(true);
the returned HRESULT is 0x80004002, which means E_NOINTERFACE error. Any way to solve this problem?
https://github.com/umautobots/GTAVisionExport/blob/master/native/src/main.cpp#L276
The text was updated successfully, but these errors were encountered:
This may be a graphics driver problem, or a GTA update.
Sorry, something went wrong.
No branches or pull requests
In the presentCallback function,
ComPtr<ID3D11DeviceContext> ctx;
ComPtr<ID3D11Multithread> multithread;
hr = ctx.As(&multithread);
if (hr != S_OK) throw std::system_error(hr, std::system_category());
multithread->SetMultithreadProtected(true);
the returned HRESULT is 0x80004002, which means E_NOINTERFACE error. Any way to solve this problem?
https://github.com/umautobots/GTAVisionExport/blob/master/native/src/main.cpp#L276
The text was updated successfully, but these errors were encountered: