UNPKG

@babylonjs/core

Version:

Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.

31 lines 1.03 kB
// Do not edit. import { ShaderStore } from "../Engines/shaderStore.js"; import "./ShadersInclude/imageProcessingDeclaration.js"; import "./ShadersInclude/helperFunctions.js"; import "./ShadersInclude/imageProcessingFunctions.js"; const name = "imageProcessingPixelShader"; const shader = `varying vec2 vUV;uniform sampler2D textureSampler; #include<imageProcessingDeclaration> #include<helperFunctions> #include<imageProcessingFunctions> #define CUSTOM_FRAGMENT_DEFINITIONS void main(void) {vec4 result=texture2D(textureSampler,vUV);result.rgb=max(result.rgb,vec3(0.)); #ifdef IMAGEPROCESSING #ifndef FROMLINEARSPACE result.rgb=toLinearSpace(result.rgb); #endif result=applyImageProcessing(result); #else #ifdef FROMLINEARSPACE result=applyImageProcessing(result); #endif #endif gl_FragColor=result;}`; // Sideeffect if (!ShaderStore.ShadersStore[name]) { ShaderStore.ShadersStore[name] = shader; } /** @internal */ export const imageProcessingPixelShader = { name, shader }; //# sourceMappingURL=imageProcessing.fragment.js.map