wined3d: Recognize SM5 deriv_rty_coarse opcode.
Signed-off-by: Józef Kucia <jkucia@codeweavers.com> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
07562768bb
commit
9108fe7233
|
@ -5254,6 +5254,7 @@ static const SHADER_HANDLER shader_arb_instruction_handler_table[WINED3DSIH_TABL
|
||||||
/* WINED3DSIH_DSX */ shader_hw_map2gl,
|
/* WINED3DSIH_DSX */ shader_hw_map2gl,
|
||||||
/* WINED3DSIH_DSX_COARSE */ NULL,
|
/* WINED3DSIH_DSX_COARSE */ NULL,
|
||||||
/* WINED3DSIH_DSY */ shader_hw_dsy,
|
/* WINED3DSIH_DSY */ shader_hw_dsy,
|
||||||
|
/* WINED3DSIH_DSY_COARSE */ NULL,
|
||||||
/* WINED3DSIH_ELSE */ shader_hw_else,
|
/* WINED3DSIH_ELSE */ shader_hw_else,
|
||||||
/* WINED3DSIH_EMIT */ NULL,
|
/* WINED3DSIH_EMIT */ NULL,
|
||||||
/* WINED3DSIH_ENDIF */ shader_hw_endif,
|
/* WINED3DSIH_ENDIF */ shader_hw_endif,
|
||||||
|
|
|
@ -8096,6 +8096,7 @@ static const SHADER_HANDLER shader_glsl_instruction_handler_table[WINED3DSIH_TAB
|
||||||
/* WINED3DSIH_DSX */ shader_glsl_map2gl,
|
/* WINED3DSIH_DSX */ shader_glsl_map2gl,
|
||||||
/* WINED3DSIH_DSX_COARSE */ NULL,
|
/* WINED3DSIH_DSX_COARSE */ NULL,
|
||||||
/* WINED3DSIH_DSY */ shader_glsl_map2gl,
|
/* WINED3DSIH_DSY */ shader_glsl_map2gl,
|
||||||
|
/* WINED3DSIH_DSY_COARSE */ NULL,
|
||||||
/* WINED3DSIH_ELSE */ shader_glsl_else,
|
/* WINED3DSIH_ELSE */ shader_glsl_else,
|
||||||
/* WINED3DSIH_EMIT */ shader_glsl_emit,
|
/* WINED3DSIH_EMIT */ shader_glsl_emit,
|
||||||
/* WINED3DSIH_ENDIF */ shader_glsl_end,
|
/* WINED3DSIH_ENDIF */ shader_glsl_end,
|
||||||
|
|
|
@ -82,6 +82,7 @@ static const char * const shader_opcode_names[] =
|
||||||
/* WINED3DSIH_DSX */ "dsx",
|
/* WINED3DSIH_DSX */ "dsx",
|
||||||
/* WINED3DSIH_DSX_COARSE */ "deriv_rtx_coarse",
|
/* WINED3DSIH_DSX_COARSE */ "deriv_rtx_coarse",
|
||||||
/* WINED3DSIH_DSY */ "dsy",
|
/* WINED3DSIH_DSY */ "dsy",
|
||||||
|
/* WINED3DSIH_DSY_COARSE */ "deriv_rty_coarse",
|
||||||
/* WINED3DSIH_ELSE */ "else",
|
/* WINED3DSIH_ELSE */ "else",
|
||||||
/* WINED3DSIH_EMIT */ "emit",
|
/* WINED3DSIH_EMIT */ "emit",
|
||||||
/* WINED3DSIH_ENDIF */ "endif",
|
/* WINED3DSIH_ENDIF */ "endif",
|
||||||
|
|
|
@ -184,6 +184,7 @@ enum wined3d_sm4_opcode
|
||||||
WINED3D_SM4_OP_DCL_TEMPS = 0x68,
|
WINED3D_SM4_OP_DCL_TEMPS = 0x68,
|
||||||
WINED3D_SM4_OP_DCL_GLOBAL_FLAGS = 0x6a,
|
WINED3D_SM4_OP_DCL_GLOBAL_FLAGS = 0x6a,
|
||||||
WINED3D_SM5_OP_DERIV_RTX_COARSE = 0x7a,
|
WINED3D_SM5_OP_DERIV_RTX_COARSE = 0x7a,
|
||||||
|
WINED3D_SM5_OP_DERIV_RTY_COARSE = 0x7c,
|
||||||
WINED3D_SM5_OP_LD_STRUCTURED = 0xa7,
|
WINED3D_SM5_OP_LD_STRUCTURED = 0xa7,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -387,6 +388,7 @@ static const struct wined3d_sm4_opcode_info opcode_table[] =
|
||||||
{WINED3D_SM4_OP_DCL_TEMPS, WINED3DSIH_DCL_TEMPS, "", ""},
|
{WINED3D_SM4_OP_DCL_TEMPS, WINED3DSIH_DCL_TEMPS, "", ""},
|
||||||
{WINED3D_SM4_OP_DCL_GLOBAL_FLAGS, WINED3DSIH_DCL_GLOBAL_FLAGS, "", ""},
|
{WINED3D_SM4_OP_DCL_GLOBAL_FLAGS, WINED3DSIH_DCL_GLOBAL_FLAGS, "", ""},
|
||||||
{WINED3D_SM5_OP_DERIV_RTX_COARSE, WINED3DSIH_DSX_COARSE, "F", "F"},
|
{WINED3D_SM5_OP_DERIV_RTX_COARSE, WINED3DSIH_DSX_COARSE, "F", "F"},
|
||||||
|
{WINED3D_SM5_OP_DERIV_RTY_COARSE, WINED3DSIH_DSY_COARSE, "F", "F"},
|
||||||
{WINED3D_SM5_OP_LD_STRUCTURED, WINED3DSIH_LD_STRUCTURED, "U", "UUR"},
|
{WINED3D_SM5_OP_LD_STRUCTURED, WINED3DSIH_LD_STRUCTURED, "U", "UUR"},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -534,6 +534,7 @@ enum WINED3D_SHADER_INSTRUCTION_HANDLER
|
||||||
WINED3DSIH_DSX,
|
WINED3DSIH_DSX,
|
||||||
WINED3DSIH_DSX_COARSE,
|
WINED3DSIH_DSX_COARSE,
|
||||||
WINED3DSIH_DSY,
|
WINED3DSIH_DSY,
|
||||||
|
WINED3DSIH_DSY_COARSE,
|
||||||
WINED3DSIH_ELSE,
|
WINED3DSIH_ELSE,
|
||||||
WINED3DSIH_EMIT,
|
WINED3DSIH_EMIT,
|
||||||
WINED3DSIH_ENDIF,
|
WINED3DSIH_ENDIF,
|
||||||
|
|
Loading…
Reference in New Issue