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 #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);