mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-09-12 18:50:22 -07:00
vkd3d-shader: Implement DMIN instruction.
Signed-off-by: Conor McCarthy <cmccarthy@codeweavers.com> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
committed by
Alexandre Julliard
parent
44a3ebb77c
commit
74a9a0b167
@@ -6844,6 +6844,7 @@ static enum GLSLstd450 vkd3d_dxbc_compiler_map_ext_glsl_instruction(
|
||||
glsl_insts[] =
|
||||
{
|
||||
{VKD3DSIH_DMAX, GLSLstd450NMax},
|
||||
{VKD3DSIH_DMIN, GLSLstd450NMin},
|
||||
{VKD3DSIH_EXP, GLSLstd450Exp2},
|
||||
{VKD3DSIH_FIRSTBIT_HI, GLSLstd450FindUMsb},
|
||||
{VKD3DSIH_FIRSTBIT_LO, GLSLstd450FindILsb},
|
||||
@@ -9534,6 +9535,7 @@ int vkd3d_dxbc_compiler_handle_instruction(struct vkd3d_dxbc_compiler *compiler,
|
||||
vkd3d_dxbc_compiler_emit_alu_instruction(compiler, instruction);
|
||||
break;
|
||||
case VKD3DSIH_DMAX:
|
||||
case VKD3DSIH_DMIN:
|
||||
case VKD3DSIH_EXP:
|
||||
case VKD3DSIH_FIRSTBIT_HI:
|
||||
case VKD3DSIH_FIRSTBIT_LO:
|
||||
|
||||
Reference in New Issue
Block a user