d3d10: Release blend state references in d3d10_effect_variable_destroy().

This commit is contained in:
Henri Verbeet 2014-02-14 10:50:19 +01:00 committed by Alexandre Julliard
parent bf17789a33
commit 577217f91a
1 changed files with 5 additions and 0 deletions

View File

@ -2295,6 +2295,11 @@ static void d3d10_effect_variable_destroy(struct d3d10_effect_variable *v)
ID3D10DepthStencilState_Release(v->u.state.object.depth_stencil);
break;
case D3D10_SVT_BLEND:
if (v->u.state.object.blend)
ID3D10BlendState_Release(v->u.state.object.blend);
break;
default:
break;
}