We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff233a6 commit 4a8417dCopy full SHA for 4a8417d
src/effects/ToneMappingEffect.ts
@@ -73,8 +73,8 @@ export class ToneMappingEffect extends Effect {
73
defines.set("toneMapping(texel)", "ReinhardToneMapping(texel)");
74
break;
75
76
- case ToneMapping.OPTIMIZED_CINEON:
77
- defines.set("toneMapping(texel)", "OptimizedCineonToneMapping(texel)");
+ case ToneMapping.CINEON:
+ defines.set("toneMapping(texel)", "CineonToneMapping(texel)");
78
79
80
case ToneMapping.ACES_FILMIC:
src/enums/ToneMapping.ts
@@ -27,7 +27,7 @@ export enum ToneMapping {
27
* @see http://filmicworlds.com/blog/filmic-tonemapping-operators
28
*/
29
30
- OPTIMIZED_CINEON,
+ CINEON,
31
32
/**
33
* ACES filmic tone mapping with a scale of 1.0/0.6.
0 commit comments