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:
authorAntonio Vazquez <blendergit@gmail.com>2020-05-12 18:47:48 +0300
committerAntonio Vazquez <blendergit@gmail.com>2020-05-12 18:48:28 +0300
commitf24e9bb0380936bcaf6c194b54342a2977784cff (patch)
tree96d8919928e1a02e7eeead2242e0a3a439ceccc7 /source/blender/makesdna/DNA_scene_types.h
parentbe4b3c64ad76a4bf12ac1cbcd948f8d9bc7be20e (diff)
GPencil: Add new parameter for SMAA threshold
This parameter allows to define the threshold for SMAA algorithm. Differential Revision: https://developer.blender.org/D7708
Diffstat (limited to 'source/blender/makesdna/DNA_scene_types.h')
-rw-r--r--source/blender/makesdna/DNA_scene_types.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h
index f4834355223..2c931e68875 100644
--- a/source/blender/makesdna/DNA_scene_types.h
+++ b/source/blender/makesdna/DNA_scene_types.h
@@ -1644,6 +1644,11 @@ typedef struct SceneEEVEE {
float light_threshold;
} SceneEEVEE;
+typedef struct SceneGpencil {
+ float smaa_threshold;
+ char _pad[4];
+} SceneGpencil;
+
/* *************************************************************** */
/* Scene ID-Block */
@@ -1775,6 +1780,7 @@ typedef struct Scene {
struct SceneDisplay display;
struct SceneEEVEE eevee;
+ struct SceneGpencil grease_pencil_settings;
} Scene;
/* **************** RENDERDATA ********************* */