From 6782a6076c22cd931dbbee03ccb3eca97c1af91d Mon Sep 17 00:00:00 2001 From: Lukas Stockner Date: Mon, 3 Jul 2017 18:22:20 +0200 Subject: [PATCH] Cycles: Add missing split kernel to CPUDevice --- intern/cycles/device/device_cpu.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/intern/cycles/device/device_cpu.cpp b/intern/cycles/device/device_cpu.cpp index 29bb1f91a40..a0cdec0951b 100644 --- a/intern/cycles/device/device_cpu.cpp +++ b/intern/cycles/device/device_cpu.cpp @@ -248,6 +248,7 @@ public: REGISTER_SPLIT_KERNEL(direct_lighting); REGISTER_SPLIT_KERNEL(shadow_blocked_ao); REGISTER_SPLIT_KERNEL(shadow_blocked_dl); + REGISTER_SPLIT_KERNEL(enqueue_inactive); REGISTER_SPLIT_KERNEL(next_iteration_setup); REGISTER_SPLIT_KERNEL(indirect_subsurface); REGISTER_SPLIT_KERNEL(buffer_update);