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:
authorXavier Hallade <xavier.hallade@intel.com>2022-06-23 14:11:57 +0300
committerXavier Hallade <xavier.hallade@intel.com>2022-06-23 14:11:57 +0300
commit751dde236b946d01f5ae046cb1e24f9309a86b3f (patch)
treed52f36cd2fd8427198493c8f8ab0bbe42212b8f4 /intern/cycles
parent04bd58e2323f28cccc157001b6d7b0f35ac7f1e2 (diff)
Cleanup: fix Cycles float3 endif comment
oneAPI backend uses its own smaller float3 type.
Diffstat (limited to 'intern/cycles')
-rw-r--r--intern/cycles/util/types_float3_impl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/util/types_float3_impl.h b/intern/cycles/util/types_float3_impl.h
index 7fbceafb493..2e6e864c8ea 100644
--- a/intern/cycles/util/types_float3_impl.h
+++ b/intern/cycles/util/types_float3_impl.h
@@ -83,7 +83,7 @@ ccl_device_inline void print_float3(const char *label, const float3 &a)
{
printf("%s: %.8f %.8f %.8f\n", label, (double)a.x, (double)a.y, (double)a.z);
}
-#endif /* !defined(__KERNEL_GPU__) || defined(__KERNEL_ONEAPI__) */
+#endif /* !defined(__KERNEL_GPU__) */
CCL_NAMESPACE_END