2023-01-13 04:00:14 +08:00
|
|
|
#version 120
|
|
|
|
#extension GL_EXT_gpu_shader4 : enable
|
2023-01-13 04:28:19 +08:00
|
|
|
#include "lib/settings.glsl"
|
2023-01-13 04:00:14 +08:00
|
|
|
|
|
|
|
|
|
|
|
varying vec2 texcoord;
|
|
|
|
flat varying vec4 exposure;
|
|
|
|
flat varying vec2 rodExposureDepth;
|
|
|
|
uniform sampler2D colortex4;
|
|
|
|
|
|
|
|
//////////////////////////////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);
|
|
|
|
}
|