From c42568a31f081c06317a0028714b7ec3f5b09d99 Mon Sep 17 00:00:00 2001 From: Nathan Bierema Date: Tue, 19 Dec 2023 23:32:13 -0500 Subject: [PATCH] WebGLRenderer: Add support for AgX Tone Mapping --- types/three/src/constants.d.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/types/three/src/constants.d.ts b/types/three/src/constants.d.ts index 8c9c98cbe..7c84acc64 100644 --- a/types/three/src/constants.d.ts +++ b/types/three/src/constants.d.ts @@ -140,13 +140,15 @@ export const ReinhardToneMapping: 2; export const CineonToneMapping: 3; export const ACESFilmicToneMapping: 4; export const CustomToneMapping: 5; +export const AgXToneMapping: 6; export type ToneMapping = | typeof NoToneMapping | typeof LinearToneMapping | typeof ReinhardToneMapping | typeof CineonToneMapping | typeof ACESFilmicToneMapping - | typeof CustomToneMapping; + | typeof CustomToneMapping + | typeof AgXToneMapping; // Bind modes export const AttachedBindMode: 'attached';