From f24e9bb0380936bcaf6c194b54342a2977784cff Mon Sep 17 00:00:00 2001 From: Antonio Vazquez Date: Tue, 12 May 2020 17:47:48 +0200 Subject: GPencil: Add new parameter for SMAA threshold This parameter allows to define the threshold for SMAA algorithm. Differential Revision: https://developer.blender.org/D7708 --- source/blender/makesdna/DNA_scene_types.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'source/blender/makesdna/DNA_scene_types.h') 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 ********************* */ -- cgit v1.2.3