mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-04-13 05:43:18 -07:00
libs/vkd3d-shader: Upgrade FIXME() to ERR() in vkd3d_dxbc_compiler_emit_alu_instruction().
vkd3d_dxbc_compiler_emit_alu_instruction() is called only for implemented instructions.
This commit is contained in:
@ -1876,7 +1876,7 @@ static void vkd3d_dxbc_compiler_emit_alu_instruction(struct vkd3d_dxbc_compiler
|
|||||||
op = vkd3d_dxbc_compiler_map_alu_instruction(instruction);
|
op = vkd3d_dxbc_compiler_map_alu_instruction(instruction);
|
||||||
if (op == SpvOpMax)
|
if (op == SpvOpMax)
|
||||||
{
|
{
|
||||||
FIXME("Unhandled ALU instruction %#x.\n", instruction->handler_idx);
|
ERR("Unexpected instruction %#x.\n", instruction->handler_idx);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user