vrclient: Downgrade some ERRs

This commit is contained in:
Andrew Eikum 2019-06-12 10:37:31 -05:00
parent 98ef9fc93f
commit 11d23de666

View File

@ -228,7 +228,7 @@ static int load_vrclient(void)
vrclient_lib = wine_dlopen(path, RTLD_NOW, NULL, 0); vrclient_lib = wine_dlopen(path, RTLD_NOW, NULL, 0);
if(!vrclient_lib){ if(!vrclient_lib){
ERR("unable to load vrclient.so\n"); TRACE("unable to load vrclient.so\n");
return 0; return 0;
} }
@ -290,7 +290,7 @@ EVRInitError ivrclientcore_002_init(EVRInitError (*cpp_func)(void *, EVRApplicat
error = cpp_func(linux_side, application_type); error = cpp_func(linux_side, application_type);
if (error) if (error)
ERR("error %#x\n", error); WARN("error %#x\n", error);
return error; return error;
} }
@ -306,7 +306,7 @@ EVRInitError ivrclientcore_init(EVRInitError (*cpp_func)(void *, EVRApplicationT
error = cpp_func(linux_side, application_type, startup_info); error = cpp_func(linux_side, application_type, startup_info);
if (error) if (error)
ERR("error %#x\n", error); WARN("error %#x\n", error);
return 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, error = submit_data->submit(submit_data->linux_side, submit_data->eye,
tex, &bounds, submit_data->flags); tex, &bounds, submit_data->flags);
if (error) if (error)
ERR("error %#x\n", error); WARN("error %#x\n", error);
} }
void ivrcompositor_005_submit( void ivrcompositor_005_submit(
@ -581,7 +581,7 @@ static EVRCompositorError ivrcompositor_submit_wined3d(
} }
else else
{ {
ERR("Failed to get device, hr %#x.\n", hr); WARN("Failed to get device, hr %#x.\n", hr);
user_data->wined3d_device = NULL; 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, if (FAILED(hr = depth_texture_unk->lpVtbl->QueryInterface(depth_texture_unk,
&IID_IWineD3D11Texture2D, (void **)&depth_texture))) &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) if (async)
@ -882,7 +882,7 @@ EVRCompositorError ivrcompositor_submit(
} }
#endif #endif
ERR("Invalid D3D11 texture %p.\n", texture); WARN("Invalid D3D11 texture %p.\n", texture);
return cpp_func(linux_side, eye, texture, bounds, flags); 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) if (error)
ERR("error %#x\n", error); WARN("error %#x\n", error);
} }
EVRCompositorError ivrcompositor_wait_get_poses( EVRCompositorError ivrcompositor_wait_get_poses(