mirror of
https://github.com/ValveSoftware/Proton.git
synced 2024-12-26 14:45:48 +03:00
vrclient: Downgrade some ERRs
This commit is contained in:
parent
98ef9fc93f
commit
11d23de666
@ -228,7 +228,7 @@ static int load_vrclient(void)
|
||||
|
||||
vrclient_lib = wine_dlopen(path, RTLD_NOW, NULL, 0);
|
||||
if(!vrclient_lib){
|
||||
ERR("unable to load vrclient.so\n");
|
||||
TRACE("unable to load vrclient.so\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -290,7 +290,7 @@ EVRInitError ivrclientcore_002_init(EVRInitError (*cpp_func)(void *, EVRApplicat
|
||||
|
||||
error = cpp_func(linux_side, application_type);
|
||||
if (error)
|
||||
ERR("error %#x\n", error);
|
||||
WARN("error %#x\n", error);
|
||||
return error;
|
||||
}
|
||||
|
||||
@ -306,7 +306,7 @@ EVRInitError ivrclientcore_init(EVRInitError (*cpp_func)(void *, EVRApplicationT
|
||||
|
||||
error = cpp_func(linux_side, application_type, startup_info);
|
||||
if (error)
|
||||
ERR("error %#x\n", error);
|
||||
WARN("error %#x\n", error);
|
||||
return error;
|
||||
}
|
||||
|
||||
@ -500,7 +500,7 @@ static CDECL void d3d11_texture_callback(unsigned int gl_texture, unsigned int g
|
||||
error = submit_data->submit(submit_data->linux_side, submit_data->eye,
|
||||
tex, &bounds, submit_data->flags);
|
||||
if (error)
|
||||
ERR("error %#x\n", error);
|
||||
WARN("error %#x\n", error);
|
||||
}
|
||||
|
||||
void ivrcompositor_005_submit(
|
||||
@ -581,7 +581,7 @@ static EVRCompositorError ivrcompositor_submit_wined3d(
|
||||
}
|
||||
else
|
||||
{
|
||||
ERR("Failed to get device, hr %#x.\n", hr);
|
||||
WARN("Failed to get device, hr %#x.\n", hr);
|
||||
user_data->wined3d_device = NULL;
|
||||
}
|
||||
|
||||
@ -638,7 +638,7 @@ static EVRCompositorError ivrcompositor_submit_wined3d(
|
||||
{
|
||||
if (FAILED(hr = depth_texture_unk->lpVtbl->QueryInterface(depth_texture_unk,
|
||||
&IID_IWineD3D11Texture2D, (void **)&depth_texture)))
|
||||
ERR("Failed to get IWineD3D11Texture2D from depth texture.\n");
|
||||
WARN("Failed to get IWineD3D11Texture2D from depth texture.\n");
|
||||
}
|
||||
|
||||
if (async)
|
||||
@ -882,7 +882,7 @@ EVRCompositorError ivrcompositor_submit(
|
||||
}
|
||||
#endif
|
||||
|
||||
ERR("Invalid D3D11 texture %p.\n", texture);
|
||||
WARN("Invalid D3D11 texture %p.\n", texture);
|
||||
return cpp_func(linux_side, eye, texture, bounds, flags);
|
||||
}
|
||||
|
||||
@ -969,7 +969,7 @@ static CDECL void d3d11_explicit_timing_callback(const void *data, unsigned int
|
||||
}
|
||||
|
||||
if (error)
|
||||
ERR("error %#x\n", error);
|
||||
WARN("error %#x\n", error);
|
||||
}
|
||||
|
||||
EVRCompositorError ivrcompositor_wait_get_poses(
|
||||
|
Loading…
Reference in New Issue
Block a user