Hans-Kristian Arntzen : vkd3d-shader: Increment the token pointer before reading the register space in the dcl_resource_structured handler.

Alexandre Julliard julliard at winehq.org
Fri May 22 13:46:41 CDT 2020


Module: vkd3d
Branch: master
Commit: f3bf1612c113614a2392718d35213e8284527c37
URL:    https://source.winehq.org/git/vkd3d.git/?a=commit;h=f3bf1612c113614a2392718d35213e8284527c37

Author: Hans-Kristian Arntzen <post at arntzen-software.no>
Date:   Fri May 22 16:45:13 2020 +0430

vkd3d-shader: Increment the token pointer before reading the register space in the dcl_resource_structured handler.

Signed-off-by: Hans-Kristian Arntzen <post at arntzen-software.no>
Signed-off-by: Zebediah Figura <zfigura at codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 libs/vkd3d-shader/dxbc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libs/vkd3d-shader/dxbc.c b/libs/vkd3d-shader/dxbc.c
index db834fa..5e504dc 100644
--- a/libs/vkd3d-shader/dxbc.c
+++ b/libs/vkd3d-shader/dxbc.c
@@ -908,7 +908,7 @@ static void shader_sm5_read_dcl_resource_structured(struct vkd3d_shader_instruct
     const DWORD *end = &tokens[token_count];
 
     shader_sm4_read_dst_param(priv, &tokens, end, VKD3D_DATA_RESOURCE, &ins->declaration.structured_resource.reg);
-    ins->declaration.structured_resource.byte_stride = *tokens;
+    ins->declaration.structured_resource.byte_stride = *tokens++;
     if (ins->declaration.structured_resource.byte_stride % 4)
         FIXME("Byte stride %u is not multiple of 4.\n", ins->declaration.structured_resource.byte_stride);
     shader_sm4_read_register_space(priv, &tokens, end, &ins->declaration.structured_resource.register_space);




More information about the wine-cvs mailing list