From 9a59184e9facbd0464082c0a780bc66900a71920 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B3zef=20Kucia?= Date: Fri, 23 Jun 2017 22:24:33 +0200 Subject: [PATCH] libs/vkd3d: Reset current root signature in d3d12_command_list_Reset(). --- libs/vkd3d/command.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/vkd3d/command.c b/libs/vkd3d/command.c index 7cff76b7..8f1e6d81 100644 --- a/libs/vkd3d/command.c +++ b/libs/vkd3d/command.c @@ -1381,6 +1381,8 @@ static HRESULT STDMETHODCALLTYPE d3d12_command_list_Reset(ID3D12GraphicsCommandL list->pipeline_state = initial_state; } + list->root_signature = NULL; + return hr; }