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:
Diffstat (limited to 'intern/cycles/kernel/kernel_types.h')
-rw-r--r--intern/cycles/kernel/kernel_types.h19
1 files changed, 16 insertions, 3 deletions
diff --git a/intern/cycles/kernel/kernel_types.h b/intern/cycles/kernel/kernel_types.h
index f165a1f3839..abdb609b55f 100644
--- a/intern/cycles/kernel/kernel_types.h
+++ b/intern/cycles/kernel/kernel_types.h
@@ -117,6 +117,7 @@ CCL_NAMESPACE_BEGIN
#define __CAMERA_CLIPPING__
#define __INTERSECTION_REFINE__
#define __CLAMP_SAMPLE__
+#define __CMJ__
#ifdef __KERNEL_SHADING__
#define __SVM__
@@ -164,8 +165,10 @@ enum PathTraceDimension {
PRNG_LENS_V = 3,
#ifdef __CAMERA_MOTION__
PRNG_TIME = 4,
- PRNG_UNUSED = 5,
- PRNG_BASE_NUM = 6,
+ PRNG_UNUSED_0 = 5,
+ PRNG_UNUSED_1 = 6, /* for some reason (6, 7) is a bad sobol pattern */
+ PRNG_UNUSED_2 = 7, /* with a low number of samples (< 64) */
+ PRNG_BASE_NUM = 8,
#else
PRNG_BASE_NUM = 4,
#endif
@@ -181,6 +184,11 @@ enum PathTraceDimension {
PRNG_BOUNCE_NUM = 8
};
+enum SamplingPattern {
+ SAMPLING_PATTERN_SOBOL = 0,
+ SAMPLING_PATTERN_CMJ = 1
+};
+
/* these flags values correspond to raytypes in osl.cpp, so keep them in sync!
*
* for ray visibility tests in BVH traversal, the upper 20 bits are used for
@@ -728,6 +736,7 @@ typedef struct KernelIntegrator {
/* non-progressive */
int progressive;
+ int aa_samples;
int diffuse_samples;
int glossy_samples;
int transmission_samples;
@@ -736,7 +745,11 @@ typedef struct KernelIntegrator {
int use_lamp_mis;
int subsurface_samples;
- int pad1, pad2, pad3;
+ /* sampler */
+ int sampling_pattern;
+
+ /* padding */
+ int pad;
} KernelIntegrator;
typedef struct KernelBVH {