2
0
mirror of https://github.com/ValveSoftware/Proton synced 2025-08-30 22:25:34 +00:00

vrclient: Add FIXME for wined3d in IVROverlay::SetOverlayTexture

This commit is contained in:
Matt Coffin
2020-10-08 12:27:32 -06:00
committed by Andrew Eikum
parent 1625ed00c7
commit a2ccc70f7b

View File

@@ -994,6 +994,14 @@ EVROverlayError ivroverlay_set_overlay_texture(
}
}
#endif
{
IWineD3D11Texture2D *wine_texture;
if (SUCCEEDED(hr = texture_iface->lpVtbl->QueryInterface(texture_iface,
&IID_IWineD3D11Texture2D, (void **)&wine_texture)))
{
FIXME("WineD3D not yet supported by IVROverlay::SetOverlayTexture\n");
}
}
WARN("Invalid D3D11 texture %p.\n", texture);
return cpp_func(linux_side, overlayHandle, texture);