mirror of
https://github.com/ValveSoftware/Proton.git
synced 2024-12-26 14:45:48 +03:00
vrclient: Add FIXME for wined3d in IVROverlay::SetOverlayTexture
This commit is contained in:
parent
1625ed00c7
commit
a2ccc70f7b
@ -994,6 +994,14 @@ EVROverlayError ivroverlay_set_overlay_texture(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#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);
|
WARN("Invalid D3D11 texture %p.\n", texture);
|
||||||
return cpp_func(linux_side, overlayHandle, texture);
|
return cpp_func(linux_side, overlayHandle, texture);
|
||||||
|
Loading…
Reference in New Issue
Block a user