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 <brechtvanlommel@gmail.com>2018-03-20 19:11:14 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-03-20 19:11:14 +0300
commitd03223850ebc585f76ed01b74f6e13f55090afa2 (patch)
treeb34ce41f0b37f2a15d6b927c669393338b969d3e /intern/cycles/kernel
parent69e35429bf879fcfe893b7824479274c2ae8d051 (diff)
Fix build error on Windows 32 bit.
Diffstat (limited to 'intern/cycles/kernel')
-rw-r--r--intern/cycles/kernel/kernel_types.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/intern/cycles/kernel/kernel_types.h b/intern/cycles/kernel/kernel_types.h
index 11657003259..2945cdb4593 100644
--- a/intern/cycles/kernel/kernel_types.h
+++ b/intern/cycles/kernel/kernel_types.h
@@ -1462,6 +1462,7 @@ typedef struct KernelSpotLight {
float spot_angle;
float spot_smooth;
float dir[3];
+ float pad;
} KernelSpotLight;
/* PointLight is SpotLight with only radius and invarea being used. */
@@ -1470,13 +1471,16 @@ typedef struct KernelAreaLight {
float axisu[3];
float invarea;
float axisv[3];
+ float pad1;
float dir[3];
+ float pad2;
} KernelAreaLight;
typedef struct KernelDistantLight {
float radius;
float cosangle;
float invarea;
+ float pad;
} KernelDistantLight;
typedef struct KernelLight {