declare const _default: "\n\n#include \"tonemappingPS\"\n#include \"decodePS\"\n#include \"gammaPS\"\n\n// prepare the output color for the given gamma-space color\nfn prepareOutputFromGamma(gammaColor: vec3f) -> vec3f {\n    #if TONEMAP == NONE\n        #if GAMMA == NONE\n            // convert to linear space\n            return decodeGamma3(gammaColor);\n        #else \n            // output gamma space color directly\n            return gammaColor;\n        #endif\n    #else\n        // apply tonemapping in linear space and output to linear or\n        // gamma (which is handled by gammaCorrectOutput)\n        return gammaCorrectOutput(toneMap(decodeGamma3(gammaColor)));\n    #endif\n}\n";
export default _default;
