mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2024-11-21 16:46:41 -08:00
libs/vkd3d-shader: Translate exp instructions.
This commit is contained in:
parent
e9fe4da01e
commit
aa8ce19b2e
@ -2521,6 +2521,7 @@ static enum GLSLstd450 vkd3d_dxbc_compiler_map_ext_glsl_instruction(
|
||||
}
|
||||
glsl_insts[] =
|
||||
{
|
||||
{VKD3DSIH_EXP, GLSLstd450Exp2},
|
||||
{VKD3DSIH_FIRSTBIT_HI, GLSLstd450FindUMsb},
|
||||
{VKD3DSIH_FIRSTBIT_LO, GLSLstd450FindILsb},
|
||||
{VKD3DSIH_FIRSTBIT_SHI, GLSLstd450FindSMsb},
|
||||
@ -3113,6 +3114,7 @@ void vkd3d_dxbc_compiler_handle_instruction(struct vkd3d_dxbc_compiler *compiler
|
||||
case VKD3DSIH_XOR:
|
||||
vkd3d_dxbc_compiler_emit_alu_instruction(compiler, instruction);
|
||||
break;
|
||||
case VKD3DSIH_EXP:
|
||||
case VKD3DSIH_FIRSTBIT_HI:
|
||||
case VKD3DSIH_FIRSTBIT_LO:
|
||||
case VKD3DSIH_FIRSTBIT_SHI:
|
||||
|
Loading…
Reference in New Issue
Block a user