Skip to content
Snippets Groups Projects
Commit 1e7fc384 authored by Józef Kucia's avatar Józef Kucia
Browse files

libs/vkd3d-shader: Translate ishr instruction.

parent 4de9405a
No related branches found
No related tags found
No related merge requests found
......@@ -1762,6 +1762,7 @@ static SpvOp vkd3d_dxbc_compiler_map_alu_instruction(const struct vkd3d_shader_i
{VKD3DSIH_FTOI, SpvOpConvertFToS},
{VKD3DSIH_FTOU, SpvOpConvertFToU},
{VKD3DSIH_IADD, SpvOpIAdd},
{VKD3DSIH_ISHR, SpvOpShiftRightArithmetic},
{VKD3DSIH_ITOF, SpvOpConvertSToF},
{VKD3DSIH_MUL, SpvOpFMul},
{VKD3DSIH_USHR, SpvOpShiftRightLogical},
......@@ -2185,6 +2186,7 @@ void vkd3d_dxbc_compiler_handle_instruction(struct vkd3d_dxbc_compiler *compiler
case VKD3DSIH_FTOI:
case VKD3DSIH_FTOU:
case VKD3DSIH_IADD:
case VKD3DSIH_ISHR:
case VKD3DSIH_ITOF:
case VKD3DSIH_MUL:
case VKD3DSIH_USHR:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment