libs/vkd3d-shader: Recognize nop instruction.

This commit is contained in:
Józef Kucia
2017-10-05 15:58:51 +02:00
parent 50df52427f
commit 9feb7a3956
2 changed files with 4 additions and 0 deletions

View File

@@ -5498,6 +5498,8 @@ void vkd3d_dxbc_compiler_handle_instruction(struct vkd3d_dxbc_compiler *compiler
case VKD3DSIH_SYNC:
vkd3d_dxbc_compiler_emit_sync(compiler, instruction);
break;
case VKD3DSIH_NOP:
break;
default:
FIXME("Unhandled instruction %#x.\n", instruction->handler_idx);
}