mirror of
https://github.com/X0nk/Bliss-Shader.git
synced 2025-01-04 00:23:41 +08:00
24 lines
828 B
GLSL
24 lines
828 B
GLSL
#include "/lib/settings.glsl"
|
|
|
|
varying vec2 texcoord;
|
|
|
|
uniform sampler2D colortex4;
|
|
|
|
flat varying vec4 exposure;
|
|
flat varying vec2 rodExposureDepth;
|
|
|
|
//////////////////////////////VOID MAIN//////////////////////////////
|
|
//////////////////////////////VOID MAIN//////////////////////////////
|
|
//////////////////////////////VOID MAIN//////////////////////////////
|
|
//////////////////////////////VOID MAIN//////////////////////////////
|
|
//////////////////////////////VOID MAIN//////////////////////////////
|
|
|
|
void main() {
|
|
|
|
gl_Position = ftransform();
|
|
texcoord = gl_MultiTexCoord0.xy;
|
|
|
|
exposure = vec4(texelFetch2D(colortex4,ivec2(10,37),0).r*vec3(FinalR,FinalG,FinalB),texelFetch2D(colortex4,ivec2(10,37),0).r);
|
|
rodExposureDepth = texelFetch2D(colortex4,ivec2(14,37),0).rg;
|
|
rodExposureDepth.y = sqrt(rodExposureDepth.y/65000.0);
|
|
} |