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:
authorJeroen Bakker <j.bakker@atmind.nl>2018-06-25 10:06:39 +0300
committerJeroen Bakker <j.bakker@atmind.nl>2018-06-26 17:35:47 +0300
commitcf8a0597693de8fbf3dccf607d81e6e1f2c0d2aa (patch)
treeeea2c1b0fbe0313d196e41ace1cd42b9ade50469 /source/blender/makesrna/intern/rna_userdef.c
parentc07f2bc89196ea449a2875634eb85efa45733fb5 (diff)
Workbench: Tempural Anti Aliasing
- FXAA is now also done in the workbench_forward engine. - User can enable TAA8 in the userpref by setting their max viewport AA to TAA8. FXAA will still be used when navigating
Diffstat (limited to 'source/blender/makesrna/intern/rna_userdef.c')
-rw-r--r--source/blender/makesrna/intern/rna_userdef.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index 95ca742e8da..6a5f8f5aaa6 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -4174,8 +4174,9 @@ static void rna_def_userdef_system(BlenderRNA *brna)
};
static const EnumPropertyItem gpu_antialias_method_items[] = {
- {USER_AA_NONE, "OFF", 0, "Off", "Disable Anti Alias in viewport"},
- {USER_AA_FXAA, "FXAA", 0, "FXAA", "Use FXAA, a fast screenspace Anti Alias method"},
+ {USER_AA_NONE, "OFF", 0, "Off", "Disable Anti Alias in viewport"},
+ {USER_AA_FXAA, "FXAA", 0, "FXAA", "Use FXAA, a fast screenspace Anti Alias method"},
+ {USER_AA_TAA8, "TAA8", 0, "TAA 8x", "Use TAA with 8 samples when screen is static, when not static fallback to FXAA"},
{0, NULL, 0, NULL, NULL}
};