[d3d10] Forward OpenSharedResource to D3D11 implementation

Trivial since the requested IID is passed by the application.
This commit is contained in:
Philip Rebohle 2022-03-04 19:13:30 +01:00
parent 23eead9e99
commit 89b1f025eb
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99
1 changed files with 1 additions and 4 deletions

View File

@ -705,10 +705,7 @@ namespace dxvk {
HANDLE hResource,
REFIID ReturnedInterface,
void** ppResource) {
InitReturnPtr(ppResource);
Logger::err("D3D10Device::OpenSharedResource: Not implemented");
return E_NOTIMPL;
return m_device->OpenSharedResource(hResource, ReturnedInterface, ppResource);
}