Commit 812ee520 authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

wined3d: Partially revert 7433eb76.

The write mask sizes for the input and output semantics can be different, resulting in compilation failure.
parent b850008b
......@@ -3411,7 +3411,7 @@ static void handle_ps3_input(SHADER_BUFFER *buffer, const WineD3D_GL_Info *gl_in
&& !strcmp(semantic_name_in, semantic_name_out))
{
shader_addline(buffer, "%s%s = OUT[%u]%s;\n",
destination, reg_mask, j, reg_mask_out);
destination, reg_mask, j, reg_mask);
found = TRUE;
}
}
......
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