mirror of
https://github.com/X0nk/Bliss-Shader.git
synced 2024-12-23 01:59:39 +08:00
deb49da793
thats a good days work
91 lines
2.4 KiB
GLSL
91 lines
2.4 KiB
GLSL
|
|
|
|
#define ffstep(x,y) clamp((y - x) * 1e35,0.0,1.0)
|
|
vec3 drawSun(float cosY, float sunInt,vec3 nsunlight,vec3 inColor){
|
|
return inColor+nsunlight/0.0008821203*pow(smoothstep(cos(0.0093084168595*3.2),cos(0.0093084168595*1.8),cosY),3.)*0.62;
|
|
}
|
|
const float pi = 3.141592653589793238462643383279502884197169;
|
|
vec2 sphereToCarte(vec3 dir) {
|
|
float lonlat = atan(-dir.x, -dir.z);
|
|
return vec2(lonlat * (0.5/pi) +0.5,0.5*dir.y+0.5);
|
|
}
|
|
vec3 skyFromTex(vec3 pos,sampler2D sampler){
|
|
vec2 p = sphereToCarte(pos);
|
|
return texture2D(sampler,p*texelSize*256.+vec2(18.5,1.5)*texelSize).rgb;
|
|
}
|
|
vec3 skyFromTexLOD(vec3 pos,sampler2D sampler, float LOD){
|
|
vec2 p = sphereToCarte(pos);
|
|
return texture2DLod(sampler,p*texelSize*256.+vec2(18.5,1.5)*texelSize,LOD).rgb;
|
|
}
|
|
float w0(float a)
|
|
{
|
|
return (1.0/6.0)*(a*(a*(-a + 3.0) - 3.0) + 1.0);
|
|
}
|
|
|
|
float w1(float a)
|
|
{
|
|
return (1.0/6.0)*(a*a*(3.0*a - 6.0) + 4.0);
|
|
}
|
|
|
|
float w2(float a)
|
|
{
|
|
return (1.0/6.0)*(a*(a*(-3.0*a + 3.0) + 3.0) + 1.0);
|
|
}
|
|
|
|
float w3(float a)
|
|
{
|
|
return (1.0/6.0)*(a*a*a);
|
|
}
|
|
|
|
float g0(float a)
|
|
{
|
|
return w0(a) + w1(a);
|
|
}
|
|
|
|
float g1(float a)
|
|
{
|
|
return w2(a) + w3(a);
|
|
}
|
|
|
|
float h0(float a)
|
|
{
|
|
return -1.0 + w1(a) / (w0(a) + w1(a));
|
|
}
|
|
|
|
float h1(float a)
|
|
{
|
|
return 1.0 + w3(a) / (w2(a) + w3(a));
|
|
}
|
|
|
|
vec4 texture2D_bicubic(sampler2D tex, vec2 uv)
|
|
{
|
|
vec4 texelSize = vec4(texelSize,1.0/texelSize);
|
|
uv = uv*texelSize.zw;
|
|
vec2 iuv = floor( uv );
|
|
vec2 fuv = fract( uv );
|
|
|
|
float g0x = g0(fuv.x);
|
|
float g1x = g1(fuv.x);
|
|
float h0x = h0(fuv.x);
|
|
float h1x = h1(fuv.x);
|
|
float h0y = h0(fuv.y);
|
|
float h1y = h1(fuv.y);
|
|
|
|
vec2 p0 = (vec2(iuv.x + h0x, iuv.y + h0y) - 0.5) * texelSize.xy;
|
|
vec2 p1 = (vec2(iuv.x + h1x, iuv.y + h0y) - 0.5) * texelSize.xy;
|
|
vec2 p2 = (vec2(iuv.x + h0x, iuv.y + h1y) - 0.5) * texelSize.xy;
|
|
vec2 p3 = (vec2(iuv.x + h1x, iuv.y + h1y) - 0.5) * texelSize.xy;
|
|
|
|
return g0(fuv.y) * (g0x * texture2D(tex, p0) +
|
|
g1x * texture2D(tex, p1)) +
|
|
g1(fuv.y) * (g0x * texture2D(tex, p2) +
|
|
g1x * texture2D(tex, p3));
|
|
}
|
|
vec4 skyCloudsFromTex(vec3 pos,sampler2D sampler){
|
|
vec2 p = sphereToCarte(pos);
|
|
return texture2D(sampler,p*texelSize*256.+vec2(18.5+257.,1.5)*texelSize);
|
|
}
|
|
vec4 skyCloudsFromTexLOD(vec3 pos,sampler2D sampler, float LOD){
|
|
vec2 p = sphereToCarte(pos);
|
|
return texture2DLod(sampler,p*texelSize*256.+vec2(18.5+257.,1.5)*texelSize,LOD);
|
|
} |