mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2026-01-01 12:14:29 +01:00
vrclient: Add FIXME for wined3d in IVROverlay::SetOverlayTexture
This commit is contained in:
parent
1625ed00c7
commit
a2ccc70f7b
1 changed files with 8 additions and 0 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue