| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575 |
- /**
- * @author alteredq / http://alteredqualia.com/
- * @author mrdoob / http://mrdoob.com/
- * @author mikael emtinger / http://gomo.se/
- */
- THREE.ShaderChunk = {
- // FOG
- fog_pars_fragment: [
- "#ifdef USE_FOG",
- "uniform vec3 fogColor;",
- "#ifdef FOG_EXP2",
- "uniform float fogDensity;",
- "#else",
- "uniform float fogNear;",
- "uniform float fogFar;",
- "#endif",
- "#endif"
- ].join("\n"),
- fog_fragment: [
- "#ifdef USE_FOG",
- "float depth = gl_FragCoord.z / gl_FragCoord.w;",
- "#ifdef FOG_EXP2",
- "const float LOG2 = 1.442695;",
- "float fogFactor = exp2( - fogDensity * fogDensity * depth * depth * LOG2 );",
- "fogFactor = 1.0 - clamp( fogFactor, 0.0, 1.0 );",
- "#else",
- "float fogFactor = smoothstep( fogNear, fogFar, depth );",
- "#endif",
- "gl_FragColor = mix( gl_FragColor, vec4( fogColor, gl_FragColor.w ), fogFactor );",
- "#endif"
- ].join("\n"),
- // ENVIRONMENT MAP
- envmap_pars_fragment: [
- "#ifdef USE_ENVMAP",
- "varying vec3 vReflect;",
- "uniform float reflectivity;",
- "uniform samplerCube envMap;",
- "uniform float flipEnvMap;",
- "uniform int combine;",
- "#endif"
- ].join("\n"),
- envmap_fragment: [
- "#ifdef USE_ENVMAP",
- "vec4 cubeColor = textureCube( envMap, vec3( flipEnvMap * vReflect.x, vReflect.yz ) );",
- "#ifdef GAMMA_INPUT",
- "cubeColor.xyz *= cubeColor.xyz;",
- "#endif",
- "if ( combine == 1 ) {",
- "gl_FragColor.xyz = mix( gl_FragColor.xyz, cubeColor.xyz, reflectivity );",
- "} else {",
- "gl_FragColor.xyz = gl_FragColor.xyz * cubeColor.xyz;",
- "}",
- "#endif"
- ].join("\n"),
- envmap_pars_vertex: [
- "#ifdef USE_ENVMAP",
- "varying vec3 vReflect;",
- "uniform float refractionRatio;",
- "uniform bool useRefract;",
- "#endif"
- ].join("\n"),
- envmap_vertex : [
- "#ifdef USE_ENVMAP",
- "vec4 mPosition = objectMatrix * vec4( position, 1.0 );",
- "vec3 nWorld = mat3( objectMatrix[ 0 ].xyz, objectMatrix[ 1 ].xyz, objectMatrix[ 2 ].xyz ) * normal;",
- "if ( useRefract ) {",
- "vReflect = refract( normalize( mPosition.xyz - cameraPosition ), normalize( nWorld.xyz ), refractionRatio );",
- "} else {",
- "vReflect = reflect( normalize( mPosition.xyz - cameraPosition ), normalize( nWorld.xyz ) );",
- "}",
- "#endif"
- ].join("\n"),
- // COLOR MAP (particles)
- map_particle_pars_fragment: [
- "#ifdef USE_MAP",
- "uniform sampler2D map;",
- "#endif"
- ].join("\n"),
- map_particle_fragment: [
- "#ifdef USE_MAP",
- "gl_FragColor = gl_FragColor * texture2D( map, gl_PointCoord );",
- "#endif"
- ].join("\n"),
- // COLOR MAP (triangles)
- map_pars_vertex: [
- "#ifdef USE_MAP",
- "varying vec2 vUv;",
- "uniform vec4 offsetRepeat;",
- "#endif"
- ].join("\n"),
- map_pars_fragment: [
- "#ifdef USE_MAP",
- "varying vec2 vUv;",
- "uniform sampler2D map;",
- "#endif"
- ].join("\n"),
- map_vertex: [
- "#ifdef USE_MAP",
- "vUv = uv * offsetRepeat.zw + offsetRepeat.xy;",
- "#endif"
- ].join("\n"),
- map_fragment: [
- "#ifdef USE_MAP",
- "#ifdef GAMMA_INPUT",
- "vec4 texelColor = texture2D( map, vUv );",
- "texelColor.xyz *= texelColor.xyz;",
- "gl_FragColor = gl_FragColor * texelColor;",
- "#else",
- "gl_FragColor = gl_FragColor * texture2D( map, vUv );",
- "#endif",
- "#endif"
- ].join("\n"),
- // LIGHT MAP
- lightmap_pars_fragment: [
- "#ifdef USE_LIGHTMAP",
- "varying vec2 vUv2;",
- "uniform sampler2D lightMap;",
- "#endif"
- ].join("\n"),
- lightmap_pars_vertex: [
- "#ifdef USE_LIGHTMAP",
- "varying vec2 vUv2;",
- "#endif"
- ].join("\n"),
- lightmap_fragment: [
- "#ifdef USE_LIGHTMAP",
- "gl_FragColor = gl_FragColor * texture2D( lightMap, vUv2 );",
- "#endif"
- ].join("\n"),
- lightmap_vertex: [
- "#ifdef USE_LIGHTMAP",
- "vUv2 = uv2;",
- "#endif"
- ].join("\n"),
- // LIGHTS LAMBERT
- lights_lambert_pars_vertex: [
- "uniform vec3 ambient;",
- "uniform vec3 diffuse;",
- "uniform vec3 ambientLightColor;",
- "#if MAX_DIR_LIGHTS > 0",
- "uniform vec3 directionalLightColor[ MAX_DIR_LIGHTS ];",
- "uniform vec3 directionalLightDirection[ MAX_DIR_LIGHTS ];",
- "#endif",
- "#if MAX_POINT_LIGHTS > 0",
- "uniform vec3 pointLightColor[ MAX_POINT_LIGHTS ];",
- "uniform vec3 pointLightPosition[ MAX_POINT_LIGHTS ];",
- "uniform float pointLightDistance[ MAX_POINT_LIGHTS ];",
- "#endif",
- "#ifdef WRAP_AROUND",
- "uniform vec3 wrapRGB;",
- "#endif",
- ].join("\n"),
- lights_lambert_vertex: [
- "vLightWeighting = vec3( 0.0 );",
- "#if MAX_DIR_LIGHTS > 0",
- "for( int i = 0; i < MAX_DIR_LIGHTS; i ++ ) {",
- "vec4 lDirection = viewMatrix * vec4( directionalLightDirection[ i ], 0.0 );",
- "vec3 dirVector = normalize( lDirection.xyz );",
- "#ifdef WRAP_AROUND",
- "float directionalLightWeightingFull = max( dot( transformedNormal, dirVector ), 0.0 );",
- "float directionalLightWeightingHalf = max( 0.5 * dot( transformedNormal, dirVector ) + 0.5, 0.0 );",
- "vec3 directionalLightWeighting = mix( vec3( directionalLightWeightingFull ), vec3( directionalLightWeightingHalf ), wrapRGB );",
- "#else",
- "float directionalLightWeighting = max( dot( transformedNormal, dirVector ), 0.0 );",
- "#endif",
- "vLightWeighting += directionalLightColor[ i ] * directionalLightWeighting;",
- "}",
- "#endif",
- "#if MAX_POINT_LIGHTS > 0",
- "for( int i = 0; i < MAX_POINT_LIGHTS; i ++ ) {",
- "vec4 lPosition = viewMatrix * vec4( pointLightPosition[ i ], 1.0 );",
- "vec3 lVector = lPosition.xyz - mvPosition.xyz;",
- "float lDistance = 1.0;",
- "if ( pointLightDistance[ i ] > 0.0 )",
- "lDistance = 1.0 - min( ( length( lVector ) / pointLightDistance[ i ] ), 1.0 );",
- "lVector = normalize( lVector );",
- "#ifdef WRAP_AROUND",
- "float pointLightWeightingFull = max( dot( transformedNormal, lVector ), 0.0 );",
- "float pointLightWeightingHalf = max( 0.5 * dot( transformedNormal, lVector ) + 0.5, 0.0 );",
- "vec3 pointLightWeighting = mix( vec3 ( pointLightWeightingFull ), vec3( pointLightWeightingHalf ), wrapRGB );",
- "#else",
- "float pointLightWeighting = max( dot( transformedNormal, lVector ), 0.0 );",
- "#endif",
- "vLightWeighting += pointLightColor[ i ] * pointLightWeighting * lDistance;",
- "}",
- "#endif",
- "vLightWeighting = vLightWeighting * diffuse + ambient * ambientLightColor;",
- ].join("\n"),
- // LIGHTS PHONG
- lights_phong_pars_vertex: [
- "#if MAX_POINT_LIGHTS > 0",
- "#ifndef PHONG_PER_PIXEL",
- "uniform vec3 pointLightPosition[ MAX_POINT_LIGHTS ];",
- "uniform float pointLightDistance[ MAX_POINT_LIGHTS ];",
- "varying vec4 vPointLight[ MAX_POINT_LIGHTS ];",
- "#endif",
- "#endif"
- ].join("\n"),
- lights_phong_vertex: [
- "#if MAX_POINT_LIGHTS > 0",
- "#ifndef PHONG_PER_PIXEL",
- "for( int i = 0; i < MAX_POINT_LIGHTS; i ++ ) {",
- "vec4 lPosition = viewMatrix * vec4( pointLightPosition[ i ], 1.0 );",
- "vec3 lVector = lPosition.xyz - mvPosition.xyz;",
- "float lDistance = 1.0;",
- "if ( pointLightDistance[ i ] > 0.0 )",
- "lDistance = 1.0 - min( ( length( lVector ) / pointLightDistance[ i ] ), 1.0 );",
- "vPointLight[ i ] = vec4( lVector, lDistance );",
- "}",
- "#endif",
- "#endif"
- ].join("\n"),
- lights_phong_pars_fragment: [
- "uniform vec3 ambientLightColor;",
- "#if MAX_DIR_LIGHTS > 0",
- "uniform vec3 directionalLightColor[ MAX_DIR_LIGHTS ];",
- "uniform vec3 directionalLightDirection[ MAX_DIR_LIGHTS ];",
- "#endif",
- "#if MAX_POINT_LIGHTS > 0",
- "uniform vec3 pointLightColor[ MAX_POINT_LIGHTS ];",
- "#ifdef PHONG_PER_PIXEL",
- "uniform vec3 pointLightPosition[ MAX_POINT_LIGHTS ];",
- "uniform float pointLightDistance[ MAX_POINT_LIGHTS ];",
- "#else",
- "varying vec4 vPointLight[ MAX_POINT_LIGHTS ];",
- "#endif",
- "#endif",
- "#ifdef WRAP_AROUND",
- "uniform vec3 wrapRGB;",
- "#endif",
- "varying vec3 vViewPosition;",
- "varying vec3 vNormal;"
- ].join("\n"),
- lights_phong_fragment: [
- "vec3 normal = normalize( vNormal );",
- "vec3 viewPosition = normalize( vViewPosition );",
- "#if MAX_POINT_LIGHTS > 0",
- "vec3 pointDiffuse = vec3( 0.0 );",
- "vec3 pointSpecular = vec3( 0.0 );",
- "for ( int i = 0; i < MAX_POINT_LIGHTS; i ++ ) {",
- "#ifdef PHONG_PER_PIXEL",
- "vec4 lPosition = viewMatrix * vec4( pointLightPosition[ i ], 1.0 );",
- "vec3 lVector = lPosition.xyz + vViewPosition.xyz;",
- "float lDistance = 1.0;",
- "if ( pointLightDistance[ i ] > 0.0 )",
- "lDistance = 1.0 - min( ( length( lVector ) / pointLightDistance[ i ] ), 1.0 );",
- "lVector = normalize( lVector );",
- "#else",
- "vec3 lVector = normalize( vPointLight[ i ].xyz );",
- "float lDistance = vPointLight[ i ].w;",
- "#endif",
- // diffuse
- "#ifdef WRAP_AROUND",
- "float pointDiffuseWeightFull = max( dot( normal, lVector ), 0.0 );",
- "float pointDiffuseWeightHalf = max( 0.5 * dot( normal, lVector ) + 0.5, 0.0 );",
- "vec3 pointDiffuseWeight = mix( vec3 ( pointDiffuseWeightFull ), vec3( pointDiffuseWeightHalf ), wrapRGB );",
- "#else",
- "float pointDiffuseWeight = max( dot( normal, lVector ), 0.0 );",
- "#endif",
- "pointDiffuse += diffuse * pointLightColor[ i ] * pointDiffuseWeight * lDistance;",
- // specular
- "vec3 pointHalfVector = normalize( lVector + viewPosition );",
- "float pointDotNormalHalf = max( dot( normal, pointHalfVector ), 0.0 );",
- "float pointSpecularWeight = max( pow( pointDotNormalHalf, shininess ), 0.0 );",
- "#ifdef PHYSICALLY_BASED_SHADING",
- "vec3 schlick = specular + vec3( 1.0 - specular ) * pow( dot( lVector, pointHalfVector ), 5.0 );",
- "pointSpecular += schlick * pointLightColor[ i ] * pointSpecularWeight * pointDiffuseWeight * lDistance;",
- "#else",
- "pointSpecular += specular * pointLightColor[ i ] * pointSpecularWeight * pointDiffuseWeight * lDistance;",
- "#endif",
- "}",
- "#endif",
- "#if MAX_DIR_LIGHTS > 0",
- "vec3 dirDiffuse = vec3( 0.0 );",
- "vec3 dirSpecular = vec3( 0.0 );" ,
- "for( int i = 0; i < MAX_DIR_LIGHTS; i ++ ) {",
- "vec4 lDirection = viewMatrix * vec4( directionalLightDirection[ i ], 0.0 );",
- "vec3 dirVector = normalize( lDirection.xyz );",
- // diffuse
- "#ifdef WRAP_AROUND",
- "float dirDiffuseWeightFull = max( dot( normal, dirVector ), 0.0 );",
- "float dirDiffuseWeightHalf = max( 0.5 * dot( normal, dirVector ) + 0.5, 0.0 );",
- "vec3 dirDiffuseWeight = mix( vec3( dirDiffuseWeightFull ), vec3( dirDiffuseWeightHalf ), wrapRGB );",
- "#else",
- "float dirDiffuseWeight = max( dot( normal, dirVector ), 0.0 );",
- "#endif",
- "dirDiffuse += diffuse * directionalLightColor[ i ] * dirDiffuseWeight;",
- // specular
- "vec3 dirHalfVector = normalize( dirVector + viewPosition );",
- "float dirDotNormalHalf = max( dot( normal, dirHalfVector ), 0.0 );",
- "float dirSpecularWeight = max( pow( dirDotNormalHalf, shininess ), 0.0 );",
- "#ifdef PHYSICALLY_BASED_SHADING",
- /*
- // fresnel term from skin shader
- "const float F0 = 0.128;",
- "float base = 1.0 - dot( viewPosition, dirHalfVector );",
- "float exponential = pow( base, 5.0 );",
- "float fresnel = exponential + F0 * ( 1.0 - exponential );",
- */
- /*
- // fresnel term from fresnel shader
- "const float mFresnelBias = 0.08;",
- "const float mFresnelScale = 0.3;",
- "const float mFresnelPower = 5.0;",
- "float fresnel = mFresnelBias + mFresnelScale * pow( 1.0 + dot( normalize( -viewPosition ), normal ), mFresnelPower );",
- */
- // normalization factor
- //float specularNormalization = ( shininess + 2.0 ) / 8.0;
- //"dirSpecular += specular * directionalLightColor[ i ] * dirSpecularWeight * dirDiffuseWeight * specularNormalization * fresnel;",
- "vec3 schlick = specular + vec3( 1.0 - specular ) * pow( dot( dirVector, dirHalfVector ), 5.0 );",
- "dirSpecular += schlick * directionalLightColor[ i ] * dirSpecularWeight * dirDiffuseWeight;",
- "#else",
- "dirSpecular += specular * directionalLightColor[ i ] * dirSpecularWeight * dirDiffuseWeight;",
- "#endif",
- "}",
- "#endif",
- "vec3 totalDiffuse = vec3( 0.0 );",
- "vec3 totalSpecular = vec3( 0.0 );",
- "#if MAX_DIR_LIGHTS > 0",
- "totalDiffuse += dirDiffuse;",
- "totalSpecular += dirSpecular;",
- "#endif",
- "#if MAX_POINT_LIGHTS > 0",
- "totalDiffuse += pointDiffuse;",
- "totalSpecular += pointSpecular;",
- "#endif",
- "#ifdef METAL",
- "gl_FragColor.xyz = gl_FragColor.xyz * ( totalDiffuse + ambientLightColor * ambient + totalSpecular );",
- "#else",
- "gl_FragColor.xyz = gl_FragColor.xyz * ( totalDiffuse + ambientLightColor * ambient ) + totalSpecular;",
- "#endif"
- ].join("\n"),
- // VERTEX COLORS
- color_pars_fragment: [
- "#ifdef USE_COLOR",
- "varying vec3 vColor;",
- "#endif"
- ].join("\n"),
- color_fragment: [
- "#ifdef USE_COLOR",
- "gl_FragColor = gl_FragColor * vec4( vColor, opacity );",
- "#endif"
- ].join("\n"),
- color_pars_vertex: [
- "#ifdef USE_COLOR",
- "varying vec3 vColor;",
- "#endif"
- ].join("\n"),
- color_vertex: [
- "#ifdef USE_COLOR",
- "#ifdef GAMMA_INPUT",
- "vColor = color * color;",
- "#else",
- "vColor = color;",
- "#endif",
- "#endif"
- ].join("\n"),
- // SKINNING
- skinning_pars_vertex: [
- "#ifdef USE_SKINNING",
- "uniform mat4 boneGlobalMatrices[ MAX_BONES ];",
- "#endif"
- ].join("\n"),
- skinning_vertex: [
- "#ifdef USE_SKINNING",
- "gl_Position = ( boneGlobalMatrices[ int( skinIndex.x ) ] * skinVertexA ) * skinWeight.x;",
- "gl_Position += ( boneGlobalMatrices[ int( skinIndex.y ) ] * skinVertexB ) * skinWeight.y;",
- "gl_Position = projectionMatrix * modelViewMatrix * gl_Position;",
- "#endif"
- ].join("\n"),
- // MORPHING
- morphtarget_pars_vertex: [
- "#ifdef USE_MORPHTARGETS",
- "uniform float morphTargetInfluences[ 8 ];",
- "#endif"
- ].join("\n"),
- morphtarget_vertex: [
- "#ifdef USE_MORPHTARGETS",
- "vec3 morphed = vec3( 0.0, 0.0, 0.0 );",
- "morphed += ( morphTarget0 - position ) * morphTargetInfluences[ 0 ];",
- "morphed += ( morphTarget1 - position ) * morphTargetInfluences[ 1 ];",
- "morphed += ( morphTarget2 - position ) * morphTargetInfluences[ 2 ];",
- "morphed += ( morphTarget3 - position ) * morphTargetInfluences[ 3 ];",
- "morphed += ( morphTarget4 - position ) * morphTargetInfluences[ 4 ];",
- "morphed += ( morphTarget5 - position ) * morphTargetInfluences[ 5 ];",
- "morphed += ( morphTarget6 - position ) * morphTargetInfluences[ 6 ];",
- "morphed += ( morphTarget7 - position ) * morphTargetInfluences[ 7 ];",
- "morphed += position;",
- "gl_Position = projectionMatrix * modelViewMatrix * vec4( morphed, 1.0 );",
- "#endif"
- ].join("\n"),
- default_vertex : [
- "#ifndef USE_MORPHTARGETS",
- "#ifndef USE_SKINNING",
- "gl_Position = projectionMatrix * mvPosition;",
- "#endif",
- "#endif"
- ].join("\n"),
- // SHADOW MAP
- // based on SpiderGL shadow map and Fabien Sanglard's GLSL shadow mapping examples
- // http://spidergl.org/example.php?id=6
- // http://fabiensanglard.net/shadowmapping
- shadowmap_pars_fragment: [
- "#ifdef USE_SHADOWMAP",
- "uniform sampler2D shadowMap[ MAX_SHADOWS ];",
- "uniform vec2 shadowMapSize[ MAX_SHADOWS ];",
- "uniform float shadowDarkness[ MAX_SHADOWS ];",
- "uniform float shadowBias[ MAX_SHADOWS ];",
- "varying vec4 vShadowCoord[ MAX_SHADOWS ];",
- "float unpackDepth( const in vec4 rgba_depth ) {",
- "const vec4 bit_shift = vec4( 1.0 / ( 256.0 * 256.0 * 256.0 ), 1.0 / ( 256.0 * 256.0 ), 1.0 / 256.0, 1.0 );",
- "float depth = dot( rgba_depth, bit_shift );",
- "return depth;",
- "}",
- "#endif"
- ].join("\n"),
- shadowmap_fragment: [
- "#ifdef USE_SHADOWMAP",
- "#ifdef SHADOWMAP_DEBUG",
- "vec3 frustumColors[3];",
- "frustumColors[0] = vec3( 1.0, 0.5, 0.0 );",
- "frustumColors[1] = vec3( 0.0, 1.0, 0.8 );",
- "frustumColors[2] = vec3( 0.0, 0.5, 1.0 );",
- "#endif",
- "#ifdef SHADOWMAP_CASCADE",
- "int inFrustumCount = 0;",
- "#endif",
- "float fDepth;",
- "vec3 shadowColor = vec3( 1.0 );",
- "for( int i = 0; i < MAX_SHADOWS; i ++ ) {",
- "vec3 shadowCoord = vShadowCoord[ i ].xyz / vShadowCoord[ i ].w;",
- // "if ( something && something )" breaks ATI OpenGL shader compiler
- // "if ( all( something, something ) )" using this instead
- "bvec4 inFrustumVec = bvec4 ( shadowCoord.x >= 0.0, shadowCoord.x <= 1.0, shadowCoord.y >= 0.0, shadowCoord.y <= 1.0 );",
- "bool inFrustum = all( inFrustumVec );",
- // don't shadow pixels outside of light frustum
- // use just first frustum (for cascades)
- // don't shadow pixels behind far plane of light frustum
- "#ifdef SHADOWMAP_CASCADE",
- "inFrustumCount += int( inFrustum );",
- "bvec3 frustumTestVec = bvec3( inFrustum, inFrustumCount == 1, shadowCoord.z <= 1.0 );",
- "#else",
- "bvec2 frustumTestVec = bvec2( inFrustum, shadowCoord.z <= 1.0 );",
- "#endif",
- "bool frustumTest = all( frustumTestVec );",
- "if ( frustumTest ) {",
- "shadowCoord.z += shadowBias[ i ];",
- "#ifdef SHADOWMAP_SOFT",
- // Percentage-close filtering
- // (9 pixel kernel)
- // http://fabiensanglard.net/shadowmappingPCF/
- "float shadow = 0.0;",
- /*
- // nested loops breaks shader compiler / validator on some ATI cards when using OpenGL
- // must enroll loop manually
- "for ( float y = -1.25; y <= 1.25; y += 1.25 )",
- "for ( float x = -1.25; x <= 1.25; x += 1.25 ) {",
- "vec4 rgbaDepth = texture2D( shadowMap[ i ], vec2( x * xPixelOffset, y * yPixelOffset ) + shadowCoord.xy );",
- // doesn't seem to produce any noticeable visual difference compared to simple "texture2D" lookup
- //"vec4 rgbaDepth = texture2DProj( shadowMap[ i ], vec4( vShadowCoord[ i ].w * ( vec2( x * xPixelOffset, y * yPixelOffset ) + shadowCoord.xy ), 0.05, vShadowCoord[ i ].w ) );",
- "float fDepth = unpackDepth( rgbaDepth );",
- "if ( fDepth < shadowCoord.z )",
- "shadow += 1.0;",
- "}",
- "shadow /= 9.0;",
- */
- "const float shadowDelta = 1.0 / 9.0;",
- "float xPixelOffset = 1.0 / shadowMapSize[ i ].x;",
- "float yPixelOffset = 1.0 / shadowMapSize[ i ].y;",
- "float dx0 = -1.25 * xPixelOffset;",
- "float dy0 = -1.25 * yPixelOffset;",
- "float dx1 = 1.25 * xPixelOffset;",
- "float dy1 = 1.25 * yPixelOffset;",
- "fDepth = unpackDepth( texture2D( shadowMap[ i ], shadowCoord.xy + vec2( dx0, dy0 ) ) );",
- "if ( fDepth < shadowCoord.z ) shadow += shadowDelta;",
- "fDepth = unpackDepth( texture2D( shadowMap[ i ], shadowCoord.xy + vec2( 0.0, dy0 ) ) );",
- "if ( fDepth < shadowCoord.z ) shadow += shadowDelta;",
- "fDepth = unpackDepth( texture2D( shadowMap[ i ], shadowCoord.xy + vec2( dx1, dy0 ) ) );",
- "if ( fDepth < shadowCoord.z ) shadow += shadowDelta;",
- "fDepth = unpackDepth( texture2D( shadowMap[ i ], shadowCoord.xy + vec2( dx0, 0.0 ) ) );",
- "if ( fDepth < shadowCoord.z ) shadow += shadowDelta;",
- "fDepth = unpackDepth( texture2D( shadowMap[ i ], shadowCoord.xy ) );",
- "if ( fDepth < shadowCoord.z ) shadow += shadowDelta;",
- "fDepth = unpackDepth( texture2D( shadowMap[ i ], shadowCoord.xy + vec2( dx1, 0.0 ) ) );",
- "if ( fDepth < shadowCoord.z ) shadow += shadowDelta;",
- "fDepth = unpackDepth( texture2D( shadowMap[ i ], shadowCoord.xy + vec2( dx0, dy1 ) ) );",
- "if ( fDepth < shadowCoord.z ) shadow += shadowDelta;",
- "fDepth = unpackDepth( texture2D( shadowMap[ i ], shadowCoord.xy + vec2( 0.0, dy1 ) ) );",
- "if ( fDepth < shadowCoord.z ) shadow += shadowDelta;",
- "fDepth = unpackDepth( texture2D( shadowMap[ i ], shadowCoord.xy + vec2( dx1, dy1 ) ) );",
- "if ( fDepth < shadowCoord.z ) shadow += shadowDelta;",
- "shadowColor = shadowColor * vec3( ( 1.0 - shadowDarkness[ i ] * shadow ) );",
- "#else",
- "vec4 rgbaDepth = texture2D( shadowMap[ i ], shadowCoord.xy );",
- "float fDepth = unpackDepth( rgbaDepth );",
- "if ( fDepth < shadowCoord.z )",
- // spot with multiple shadows is darker
- "shadowColor = shadowColor * vec3( 1.0 - shadowDarkness[ i ] );",
- // spot with multiple shadows has the same color as single shadow spot
- //"shadowColor = min( shadowColor, vec3( shadowDarkness[ i ] ) );",
- "#endif",
- "}",
- "#ifdef SHADOWMAP_DEBUG",
- "#ifdef SHADOWMAP_CASCADE",
- "if ( inFrustum && inFrustumCount == 1 ) gl_FragColor.xyz *= frustumColors[ i ];",
- "#else",
- "if ( inFrustum ) gl_FragColor.xyz *= frustumColors[ i ];",
- "#endif",
- "#endif",
- "}",
- "#ifdef GAMMA_OUTPUT",
- "shadowColor *= shadowColor;",
- "#endif",
- "gl_FragColor.xyz = gl_FragColor.xyz * shadowColor;",
- "#endif"
- ].join("\n"),
- shadowmap_pars_vertex: [
- "#ifdef USE_SHADOWMAP",
- "varying vec4 vShadowCoord[ MAX_SHADOWS ];",
- "uniform mat4 shadowMatrix[ MAX_SHADOWS ];",
- "#endif"
- ].join("\n"),
- shadowmap_vertex: [
- "#ifdef USE_SHADOWMAP",
- "for( int i = 0; i < MAX_SHADOWS; i ++ ) {",
- "#ifdef USE_MORPHTARGETS",
- "vShadowCoord[ i ] = shadowMatrix[ i ] * objectMatrix * vec4( morphed, 1.0 );",
- "#else",
- "vShadowCoord[ i ] = shadowMatrix[ i ] * objectMatrix * vec4( position, 1.0 );",
- "#endif",
- "}",
- "#endif"
- ].join("\n"),
- // ALPHATEST
- alphatest_fragment: [
- "#ifdef ALPHATEST",
- "if ( gl_FragColor.a < ALPHATEST ) discard;",
- "#endif"
- ].join("\n"),
- // LINEAR SPACE
- linear_to_gamma_fragment: [
- "#ifdef GAMMA_OUTPUT",
- "gl_FragColor.xyz = sqrt( gl_FragColor.xyz );",
- "#endif"
- ].join("\n"),
- };
- THREE.UniformsUtils = {
- merge: function ( uniforms ) {
- var u, p, tmp, merged = {};
- for ( u = 0; u < uniforms.length; u++ ) {
- tmp = this.clone( uniforms[ u ] );
- for ( p in tmp ) {
- merged[ p ] = tmp[ p ];
- }
- }
- return merged;
- },
- clone: function ( uniforms_src ) {
- var u, p, parameter, parameter_src, uniforms_dst = {};
- for ( u in uniforms_src ) {
- uniforms_dst[ u ] = {};
- for ( p in uniforms_src[ u ] ) {
- parameter_src = uniforms_src[ u ][ p ];
- if ( parameter_src instanceof THREE.Color ||
- parameter_src instanceof THREE.Vector2 ||
- parameter_src instanceof THREE.Vector3 ||
- parameter_src instanceof THREE.Vector4 ||
- parameter_src instanceof THREE.Matrix4 ||
- parameter_src instanceof THREE.Texture ) {
- uniforms_dst[ u ][ p ] = parameter_src.clone();
- } else if ( parameter_src instanceof Array ) {
- uniforms_dst[ u ][ p ] = parameter_src.slice();
- } else {
- uniforms_dst[ u ][ p ] = parameter_src;
- }
- }
- }
- return uniforms_dst;
- }
- };
- THREE.UniformsLib = {
- common: {
- "diffuse" : { type: "c", value: new THREE.Color( 0xeeeeee ) },
- "opacity" : { type: "f", value: 1.0 },
- "map" : { type: "t", value: 0, texture: null },
- "offsetRepeat" : { type: "v4", value: new THREE.Vector4( 0, 0, 1, 1 ) },
- "lightMap" : { type: "t", value: 2, texture: null },
- "envMap" : { type: "t", value: 1, texture: null },
- "flipEnvMap" : { type: "f", value: -1 },
- "useRefract" : { type: "i", value: 0 },
- "reflectivity" : { type: "f", value: 1.0 },
- "refractionRatio" : { type: "f", value: 0.98 },
- "combine" : { type: "i", value: 0 },
- "morphTargetInfluences" : { type: "f", value: 0 }
- },
- fog : {
- "fogDensity" : { type: "f", value: 0.00025 },
- "fogNear" : { type: "f", value: 1 },
- "fogFar" : { type: "f", value: 2000 },
- "fogColor" : { type: "c", value: new THREE.Color( 0xffffff ) }
- },
- lights: {
- "ambientLightColor" : { type: "fv", value: [] },
- "directionalLightDirection" : { type: "fv", value: [] },
- "directionalLightColor" : { type: "fv", value: [] },
- "pointLightColor" : { type: "fv", value: [] },
- "pointLightPosition" : { type: "fv", value: [] },
- "pointLightDistance" : { type: "fv1", value: [] }
- },
- particle: {
- "psColor" : { type: "c", value: new THREE.Color( 0xeeeeee ) },
- "opacity" : { type: "f", value: 1.0 },
- "size" : { type: "f", value: 1.0 },
- "scale" : { type: "f", value: 1.0 },
- "map" : { type: "t", value: 0, texture: null },
- "fogDensity" : { type: "f", value: 0.00025 },
- "fogNear" : { type: "f", value: 1 },
- "fogFar" : { type: "f", value: 2000 },
- "fogColor" : { type: "c", value: new THREE.Color( 0xffffff ) }
- },
- shadowmap: {
- "shadowMap": { type: "tv", value: 6, texture: [] },
- "shadowMapSize": { type: "v2v", value: [] },
- "shadowBias" : { type: "fv1", value: [] },
- "shadowDarkness": { type: "fv1", value: [] },
- "shadowMatrix" : { type: "m4v", value: [] },
- }
- };
- THREE.ShaderLib = {
- 'depth': {
- uniforms: {
- "mNear": { type: "f", value: 1.0 },
- "mFar" : { type: "f", value: 2000.0 },
- "opacity" : { type: "f", value: 1.0 }
- },
- vertexShader: [
- "void main() {",
- "gl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );",
- "}"
- ].join("\n"),
- fragmentShader: [
- "uniform float mNear;",
- "uniform float mFar;",
- "uniform float opacity;",
- "void main() {",
- "float depth = gl_FragCoord.z / gl_FragCoord.w;",
- "float color = 1.0 - smoothstep( mNear, mFar, depth );",
- "gl_FragColor = vec4( vec3( color ), opacity );",
- "}"
- ].join("\n")
- },
- 'normal': {
- uniforms: {
- "opacity" : { type: "f", value: 1.0 }
- },
- vertexShader: [
- "varying vec3 vNormal;",
- "void main() {",
- "vec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );",
- "vNormal = normalize( normalMatrix * normal );",
- "gl_Position = projectionMatrix * mvPosition;",
- "}"
- ].join("\n"),
- fragmentShader: [
- "uniform float opacity;",
- "varying vec3 vNormal;",
- "void main() {",
- "gl_FragColor = vec4( 0.5 * normalize( vNormal ) + 0.5, opacity );",
- "}"
- ].join("\n")
- },
- 'basic': {
- uniforms: THREE.UniformsUtils.merge( [
- THREE.UniformsLib[ "common" ],
- THREE.UniformsLib[ "fog" ],
- THREE.UniformsLib[ "shadowmap" ]
- ] ),
- vertexShader: [
- THREE.ShaderChunk[ "map_pars_vertex" ],
- THREE.ShaderChunk[ "lightmap_pars_vertex" ],
- THREE.ShaderChunk[ "envmap_pars_vertex" ],
- THREE.ShaderChunk[ "color_pars_vertex" ],
- THREE.ShaderChunk[ "skinning_pars_vertex" ],
- THREE.ShaderChunk[ "morphtarget_pars_vertex" ],
- THREE.ShaderChunk[ "shadowmap_pars_vertex" ],
- "void main() {",
- "vec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );",
- THREE.ShaderChunk[ "map_vertex" ],
- THREE.ShaderChunk[ "lightmap_vertex" ],
- THREE.ShaderChunk[ "envmap_vertex" ],
- THREE.ShaderChunk[ "color_vertex" ],
- THREE.ShaderChunk[ "skinning_vertex" ],
- THREE.ShaderChunk[ "morphtarget_vertex" ],
- THREE.ShaderChunk[ "default_vertex" ],
- THREE.ShaderChunk[ "shadowmap_vertex" ],
- "}"
- ].join("\n"),
- fragmentShader: [
- "uniform vec3 diffuse;",
- "uniform float opacity;",
- THREE.ShaderChunk[ "color_pars_fragment" ],
- THREE.ShaderChunk[ "map_pars_fragment" ],
- THREE.ShaderChunk[ "lightmap_pars_fragment" ],
- THREE.ShaderChunk[ "envmap_pars_fragment" ],
- THREE.ShaderChunk[ "fog_pars_fragment" ],
- THREE.ShaderChunk[ "shadowmap_pars_fragment" ],
- "void main() {",
- "gl_FragColor = vec4( diffuse, opacity );",
- THREE.ShaderChunk[ "map_fragment" ],
- THREE.ShaderChunk[ "alphatest_fragment" ],
- THREE.ShaderChunk[ "lightmap_fragment" ],
- THREE.ShaderChunk[ "color_fragment" ],
- THREE.ShaderChunk[ "envmap_fragment" ],
- THREE.ShaderChunk[ "shadowmap_fragment" ],
- THREE.ShaderChunk[ "linear_to_gamma_fragment" ],
- THREE.ShaderChunk[ "fog_fragment" ],
- "}"
- ].join("\n")
- },
- 'lambert': {
- uniforms: THREE.UniformsUtils.merge( [
- THREE.UniformsLib[ "common" ],
- THREE.UniformsLib[ "fog" ],
- THREE.UniformsLib[ "lights" ],
- THREE.UniformsLib[ "shadowmap" ],
- {
- "ambient" : { type: "c", value: new THREE.Color( 0x050505 ) },
- "wrapRGB" : { type: "v3", value: new THREE.Vector3( 1, 1, 1 ) }
- }
- ] ),
- vertexShader: [
- "varying vec3 vLightWeighting;",
- THREE.ShaderChunk[ "map_pars_vertex" ],
- THREE.ShaderChunk[ "lightmap_pars_vertex" ],
- THREE.ShaderChunk[ "envmap_pars_vertex" ],
- THREE.ShaderChunk[ "lights_lambert_pars_vertex" ],
- THREE.ShaderChunk[ "color_pars_vertex" ],
- THREE.ShaderChunk[ "skinning_pars_vertex" ],
- THREE.ShaderChunk[ "morphtarget_pars_vertex" ],
- THREE.ShaderChunk[ "shadowmap_pars_vertex" ],
- "void main() {",
- "vec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );",
- THREE.ShaderChunk[ "map_vertex" ],
- THREE.ShaderChunk[ "lightmap_vertex" ],
- THREE.ShaderChunk[ "envmap_vertex" ],
- THREE.ShaderChunk[ "color_vertex" ],
- "vec3 transformedNormal = normalize( normalMatrix * normal );",
- THREE.ShaderChunk[ "lights_lambert_vertex" ],
- THREE.ShaderChunk[ "skinning_vertex" ],
- THREE.ShaderChunk[ "morphtarget_vertex" ],
- THREE.ShaderChunk[ "default_vertex" ],
- THREE.ShaderChunk[ "shadowmap_vertex" ],
- "}"
- ].join("\n"),
- fragmentShader: [
- "uniform float opacity;",
- "varying vec3 vLightWeighting;",
- THREE.ShaderChunk[ "color_pars_fragment" ],
- THREE.ShaderChunk[ "map_pars_fragment" ],
- THREE.ShaderChunk[ "lightmap_pars_fragment" ],
- THREE.ShaderChunk[ "envmap_pars_fragment" ],
- THREE.ShaderChunk[ "fog_pars_fragment" ],
- THREE.ShaderChunk[ "shadowmap_pars_fragment" ],
- "void main() {",
- "gl_FragColor = vec4( vec3 ( 1.0 ), opacity );",
- THREE.ShaderChunk[ "map_fragment" ],
- THREE.ShaderChunk[ "alphatest_fragment" ],
- "gl_FragColor.xyz = gl_FragColor.xyz * vLightWeighting;",
- THREE.ShaderChunk[ "lightmap_fragment" ],
- THREE.ShaderChunk[ "color_fragment" ],
- THREE.ShaderChunk[ "envmap_fragment" ],
- THREE.ShaderChunk[ "shadowmap_fragment" ],
- THREE.ShaderChunk[ "linear_to_gamma_fragment" ],
- THREE.ShaderChunk[ "fog_fragment" ],
- "}"
- ].join("\n")
- },
- 'phong': {
- uniforms: THREE.UniformsUtils.merge( [
- THREE.UniformsLib[ "common" ],
- THREE.UniformsLib[ "fog" ],
- THREE.UniformsLib[ "lights" ],
- THREE.UniformsLib[ "shadowmap" ],
- {
- "ambient" : { type: "c", value: new THREE.Color( 0x050505 ) },
- "specular" : { type: "c", value: new THREE.Color( 0x111111 ) },
- "shininess": { type: "f", value: 30 },
- "wrapRGB" : { type: "v3", value: new THREE.Vector3( 1, 1, 1 ) }
- }
- ] ),
- vertexShader: [
- "varying vec3 vViewPosition;",
- "varying vec3 vNormal;",
- THREE.ShaderChunk[ "map_pars_vertex" ],
- THREE.ShaderChunk[ "lightmap_pars_vertex" ],
- THREE.ShaderChunk[ "envmap_pars_vertex" ],
- THREE.ShaderChunk[ "lights_phong_pars_vertex" ],
- THREE.ShaderChunk[ "color_pars_vertex" ],
- THREE.ShaderChunk[ "skinning_pars_vertex" ],
- THREE.ShaderChunk[ "morphtarget_pars_vertex" ],
- THREE.ShaderChunk[ "shadowmap_pars_vertex" ],
- "void main() {",
- "vec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );",
- THREE.ShaderChunk[ "map_vertex" ],
- THREE.ShaderChunk[ "lightmap_vertex" ],
- THREE.ShaderChunk[ "envmap_vertex" ],
- THREE.ShaderChunk[ "color_vertex" ],
- "#ifndef USE_ENVMAP",
- "vec4 mPosition = objectMatrix * vec4( position, 1.0 );",
- "#endif",
- "vViewPosition = -mvPosition.xyz;",
- "vec3 transformedNormal = normalMatrix * normal;",
- "vNormal = transformedNormal;",
- THREE.ShaderChunk[ "lights_phong_vertex" ],
- THREE.ShaderChunk[ "skinning_vertex" ],
- THREE.ShaderChunk[ "morphtarget_vertex" ],
- THREE.ShaderChunk[ "default_vertex" ],
- THREE.ShaderChunk[ "shadowmap_vertex" ],
- "}"
- ].join("\n"),
- fragmentShader: [
- "uniform vec3 diffuse;",
- "uniform float opacity;",
- "uniform vec3 ambient;",
- "uniform vec3 specular;",
- "uniform float shininess;",
- THREE.ShaderChunk[ "color_pars_fragment" ],
- THREE.ShaderChunk[ "map_pars_fragment" ],
- THREE.ShaderChunk[ "lightmap_pars_fragment" ],
- THREE.ShaderChunk[ "envmap_pars_fragment" ],
- THREE.ShaderChunk[ "fog_pars_fragment" ],
- THREE.ShaderChunk[ "lights_phong_pars_fragment" ],
- THREE.ShaderChunk[ "shadowmap_pars_fragment" ],
- "void main() {",
- "gl_FragColor = vec4( vec3 ( 1.0 ), opacity );",
- THREE.ShaderChunk[ "map_fragment" ],
- THREE.ShaderChunk[ "alphatest_fragment" ],
- THREE.ShaderChunk[ "lights_phong_fragment" ],
- THREE.ShaderChunk[ "lightmap_fragment" ],
- THREE.ShaderChunk[ "color_fragment" ],
- THREE.ShaderChunk[ "envmap_fragment" ],
- THREE.ShaderChunk[ "shadowmap_fragment" ],
- THREE.ShaderChunk[ "linear_to_gamma_fragment" ],
- THREE.ShaderChunk[ "fog_fragment" ],
- "}"
- ].join("\n")
- },
- 'particle_basic': {
- uniforms: THREE.UniformsUtils.merge( [
- THREE.UniformsLib[ "particle" ],
- THREE.UniformsLib[ "shadowmap" ]
- ] ),
- vertexShader: [
- "uniform float size;",
- "uniform float scale;",
- THREE.ShaderChunk[ "color_pars_vertex" ],
- THREE.ShaderChunk[ "shadowmap_pars_vertex" ],
- "void main() {",
- THREE.ShaderChunk[ "color_vertex" ],
- "vec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );",
- "#ifdef USE_SIZEATTENUATION",
- "gl_PointSize = size * ( scale / length( mvPosition.xyz ) );",
- "#else",
- "gl_PointSize = size;",
- "#endif",
- "gl_Position = projectionMatrix * mvPosition;",
- THREE.ShaderChunk[ "shadowmap_vertex" ],
- "}"
- ].join("\n"),
- fragmentShader: [
- "uniform vec3 psColor;",
- "uniform float opacity;",
- THREE.ShaderChunk[ "color_pars_fragment" ],
- THREE.ShaderChunk[ "map_particle_pars_fragment" ],
- THREE.ShaderChunk[ "fog_pars_fragment" ],
- THREE.ShaderChunk[ "shadowmap_pars_fragment" ],
- "void main() {",
- "gl_FragColor = vec4( psColor, opacity );",
- THREE.ShaderChunk[ "map_particle_fragment" ],
- THREE.ShaderChunk[ "alphatest_fragment" ],
- THREE.ShaderChunk[ "color_fragment" ],
- THREE.ShaderChunk[ "shadowmap_fragment" ],
- THREE.ShaderChunk[ "fog_fragment" ],
- "}"
- ].join("\n")
- },
- // Depth encoding into RGBA texture
- // based on SpiderGL shadow map example
- // http://spidergl.org/example.php?id=6
- // originally from
- // http://www.gamedev.net/topic/442138-packing-a-float-into-a-a8r8g8b8-texture-shader/page__whichpage__1%25EF%25BF%25BD
- // see also here:
- // http://aras-p.info/blog/2009/07/30/encoding-floats-to-rgba-the-final/
- 'depthRGBA': {
- uniforms: {},
- vertexShader: [
- THREE.ShaderChunk[ "morphtarget_pars_vertex" ],
- "void main() {",
- "vec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );",
- THREE.ShaderChunk[ "morphtarget_vertex" ],
- THREE.ShaderChunk[ "default_vertex" ],
- "}"
- ].join("\n"),
- fragmentShader: [
- "vec4 pack_depth( const in float depth ) {",
- "const vec4 bit_shift = vec4( 256.0 * 256.0 * 256.0, 256.0 * 256.0, 256.0, 1.0 );",
- "const vec4 bit_mask = vec4( 0.0, 1.0 / 256.0, 1.0 / 256.0, 1.0 / 256.0 );",
- "vec4 res = fract( depth * bit_shift );",
- "res -= res.xxyz * bit_mask;",
- "return res;",
- "}",
- "void main() {",
- "gl_FragData[ 0 ] = pack_depth( gl_FragCoord.z );",
- //"gl_FragData[ 0 ] = pack_depth( gl_FragCoord.z / gl_FragCoord.w );",
- //"float z = ( ( gl_FragCoord.z / gl_FragCoord.w ) - 3.0 ) / ( 4000.0 - 3.0 );",
- //"gl_FragData[ 0 ] = pack_depth( z );",
- //"gl_FragData[ 0 ] = vec4( z, z, z, 1.0 );",
- "}"
- ].join("\n")
- }
- };
|