Module: vkd3d Branch: master Commit: f65884f6b4199688395ad54298d9ee2edf7bdd28 URL: https://source.winehq.org/git/vkd3d.git/?a=commit;h=f65884f6b4199688395ad542...
Author: Conor McCarthy cmccarthy@codeweavers.com Date: Fri Dec 3 18:58:57 2021 +1000
vkd3d: Initialise root signature descriptor offset buffer to NULL.
Signed-off-by: Conor McCarthy cmccarthy@codeweavers.com Signed-off-by: Henri Verbeet hverbeet@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
libs/vkd3d/state.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/libs/vkd3d/state.c b/libs/vkd3d/state.c index cb3f99a..7c9575f 100644 --- a/libs/vkd3d/state.c +++ b/libs/vkd3d/state.c @@ -1141,6 +1141,7 @@ static HRESULT d3d12_root_signature_init(struct d3d12_root_signature *root_signa root_signature->parameters = NULL; root_signature->flags = desc->Flags; root_signature->descriptor_mapping = NULL; + root_signature->descriptor_offsets = NULL; root_signature->static_sampler_count = 0; root_signature->static_samplers = NULL; root_signature->device = device;