Commit 3cd91a45 authored by Stefan Dösinger's avatar Stefan Dösinger Committed by Alexandre Julliard

wined3d: Use 50 chars for register names in texm3x3* functions.

parent 6ce32e0d
...@@ -2023,7 +2023,7 @@ static void pshader_hw_texm3x3vspec(const struct wined3d_shader_instruction *ins ...@@ -2023,7 +2023,7 @@ static void pshader_hw_texm3x3vspec(const struct wined3d_shader_instruction *ins
SHADER_PARSE_STATE* current_state = &This->baseShader.parse_state; SHADER_PARSE_STATE* current_state = &This->baseShader.parse_state;
char dst_str[50]; char dst_str[50];
char src0_name[50]; char src0_name[50];
char dst_reg[8]; char dst_reg[50];
BOOL is_color; BOOL is_color;
/* Get the dst reg without writemask strings. We know this register is uninitialized, so we can use all /* Get the dst reg without writemask strings. We know this register is uninitialized, so we can use all
...@@ -2066,7 +2066,7 @@ static void pshader_hw_texm3x3spec(const struct wined3d_shader_instruction *ins) ...@@ -2066,7 +2066,7 @@ static void pshader_hw_texm3x3spec(const struct wined3d_shader_instruction *ins)
char dst_str[50]; char dst_str[50];
char src0_name[50]; char src0_name[50];
char src1_name[50]; char src1_name[50];
char dst_reg[8]; char dst_reg[50];
BOOL is_color; BOOL is_color;
shader_arb_get_src_param(ins, &ins->src[0], 0, src0_name); shader_arb_get_src_param(ins, &ins->src[0], 0, src0_name);
......
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