Commit 75eee807 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

d3d10/effect: Handle NULL blend state assignments.

parent 62ae5db7
......@@ -1699,6 +1699,10 @@ static BOOL read_value_list(const char *data, size_t data_size, DWORD offset,
*(void **)out_data = &null_depth_stencil_variable;
break;
case D3D10_SVT_BLEND:
*(void **)out_data = &null_blend_variable;
break;
default:
FIXME("Unhandled out_type %#x.\n", out_type);
return FALSE;
......
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