UNPKG

@babylonjs/viewer

Version:

The Babylon Viewer aims to simplify a specific but common Babylon.js use case: loading, viewing, and interacting with a 3D model.

37 lines (34 loc) 1.69 kB
import { S as ShaderStore } from './index-MZPybX0H.esm.js'; import { h as helperFunctionsWGSL } from './helperFunctions-CiGzvr6_.esm.js'; import { i as importanceSamplingWGSL, h as hdrFilteringFunctionsWGSL } from './hdrFilteringFunctions-CwvCr5Ba.esm.js'; import { p as pbrBRDFFunctionsWGSL } from './pbrBRDFFunctions-DpNLaDYY.esm.js'; // Do not edit. const name = "hdrIrradianceFilteringPixelShader"; const shader = `#include<helperFunctions> #include<importanceSampling> #include<pbrBRDFFunctions> #include<hdrFilteringFunctions> var inputTextureSampler: sampler;var inputTexture: texture_cube<f32>; #ifdef IBL_CDF_FILTERING var icdfTextureSampler: sampler;var icdfTexture: texture_2d<f32>; #endif uniform vFilteringInfo: vec2f;uniform hdrScale: f32;varying direction: vec3f;@fragment fn main(input: FragmentInputs)->FragmentOutputs {var color: vec3f=irradiance(inputTexture,inputTextureSampler,input.direction,uniforms.vFilteringInfo,0.0,vec3f(1.0),input.direction #ifdef IBL_CDF_FILTERING ,icdfTexture,icdfTextureSampler #endif );fragmentOutputs.color= vec4f(color*uniforms.hdrScale,1.0);}`; // Sideeffect if (!ShaderStore.ShadersStoreWGSL[name]) { ShaderStore.ShadersStoreWGSL[name] = shader; } const includes = [helperFunctionsWGSL, importanceSamplingWGSL, pbrBRDFFunctionsWGSL, hdrFilteringFunctionsWGSL]; for (const inc of includes) { if (!ShaderStore.IncludesShadersStoreWGSL[inc.name]) { ShaderStore.IncludesShadersStoreWGSL[inc.name] = inc.shader; } } /** @internal */ const hdrIrradianceFilteringPixelShaderWGSL = { name, shader }; export { hdrIrradianceFilteringPixelShaderWGSL }; //# sourceMappingURL=hdrIrradianceFiltering.fragment-DjEqDsgc.esm.js.map