From f3013f0e46dd9904f335fbac6de1b4e469f9c4ef Mon Sep 17 00:00:00 2001 From: Alexander Rose <alexander.rose@weirdbyte.de> Date: Sat, 12 Dec 2020 17:30:52 -0800 Subject: [PATCH] smaa param tweaks --- src/mol-canvas3d/passes/smaa.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mol-canvas3d/passes/smaa.ts b/src/mol-canvas3d/passes/smaa.ts index f7a6af26f..49196c33a 100644 --- a/src/mol-canvas3d/passes/smaa.ts +++ b/src/mol-canvas3d/passes/smaa.ts @@ -25,8 +25,8 @@ import { Viewport } from '../camera/util'; import { isDebugMode } from '../../mol-util/debug'; export const SmaaParams = { - edgeThreshold:PD.Numeric(0.1, { min: 0.05, max: 0.2, step: 0.01 }), - maxSearchSteps:PD.Numeric(18, { min: 0, max: 98, step: 1 }), + edgeThreshold:PD.Numeric(0.1, { min: 0.05, max: 0.15, step: 0.01 }), + maxSearchSteps:PD.Numeric(16, { min: 0, max: 32, step: 1 }), }; export type SmaaProps = PD.Values<typeof SmaaParams> -- GitLab