Commit 37af1676 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

d3d9: Stop setting the device state in d3d9_device_SetPixelShader().

parent 4b8d3288
......@@ -3855,9 +3855,6 @@ static HRESULT WINAPI d3d9_device_SetPixelShader(IDirect3DDevice9Ex *iface, IDir
wined3d_mutex_lock();
wined3d_stateblock_set_pixel_shader(device->update_state,
shader_obj ? shader_obj->wined3d_shader : NULL);
if (!device->recording)
wined3d_device_set_pixel_shader(device->wined3d_device,
shader_obj ? shader_obj->wined3d_shader : NULL);
wined3d_mutex_unlock();
return D3D_OK;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment