threepipe
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.

TonemapPlugin.patch.glsl 241B

12345678
  1. bool doTonemap = true;
  2. #ifdef HAS_GBUFFER
  3. // doTonemap = getToneMapBit(getGBufferFlags(vUv).a) > 0; // todo
  4. #if TONEMAP_BACKGROUND < 1
  5. if(isBackground) doTonemap = false;
  6. #endif
  7. #endif
  8. if(doTonemap) diffuseColor = ToneMapping(diffuseColor);