You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
12345678 |
- bool doTonemap = true;
- #ifdef HAS_GBUFFER
- // doTonemap = getToneMapBit(getGBufferFlags(vUv).a) > 0; // todo
- #if TONEMAP_BACKGROUND < 1
- if(isBackground) doTonemap = false;
- #endif
- #endif
- if(doTonemap) diffuseColor = ToneMapping(diffuseColor);
|