Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brecht@blender.org>2021-10-13 20:13:35 +0300
committerBrecht Van Lommel <brecht@blender.org>2021-10-15 16:42:44 +0300
commit2ba7c3aa650c3c795d903a24998204f67c75b017 (patch)
treeef80c7cadbe59d1062dd75818baad4d8ad594bcb /intern/cycles/device/cpu/kernel.h
parent70376154a0b09dc05fcc5bd79c33fdf7c6acbd9a (diff)
Cleanup: refactor to make number of channels for shader evaluation variable
Diffstat (limited to 'intern/cycles/device/cpu/kernel.h')
-rw-r--r--intern/cycles/device/cpu/kernel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/device/cpu/kernel.h b/intern/cycles/device/cpu/kernel.h
index 54b18308544..b5f0d873f30 100644
--- a/intern/cycles/device/cpu/kernel.h
+++ b/intern/cycles/device/cpu/kernel.h
@@ -54,7 +54,7 @@ class CPUKernels {
/* Shader evaluation. */
using ShaderEvalFunction = CPUKernelFunction<void (*)(
- const KernelGlobals *kg, const KernelShaderEvalInput *, float4 *, const int)>;
+ const KernelGlobals *kg, const KernelShaderEvalInput *, float *, const int)>;
ShaderEvalFunction shader_eval_displace;
ShaderEvalFunction shader_eval_background;