Commit cc2750b1 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

d3d9: Handle stateblocks in d3d9_device_SetTextureStageState().

parent d2a44f45
......@@ -2575,7 +2575,9 @@ static HRESULT WINAPI d3d9_device_SetTextureStageState(IDirect3DDevice9Ex *iface
}
wined3d_mutex_lock();
wined3d_device_set_texture_stage_state(device->wined3d_device, stage, tss_lookup[state], value);
wined3d_stateblock_set_texture_stage_state(device->update_state, stage, tss_lookup[state], value);
if (!device->recording)
wined3d_device_set_texture_stage_state(device->wined3d_device, stage, tss_lookup[state], value);
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