2023-01-13 04:00:14 +08:00
|
|
|
#version 120
|
2023-07-07 05:56:54 +08:00
|
|
|
//#extension GL_EXT_gpu_shader4 : disable
|
2023-01-13 04:28:19 +08:00
|
|
|
|
2023-07-07 20:56:38 +08:00
|
|
|
#include "/lib/settings.glsl"
|
2023-01-13 04:00:14 +08:00
|
|
|
|
2023-04-17 04:18:26 +08:00
|
|
|
varying vec2 texcoord;
|
|
|
|
flat varying float exposureA;
|
2023-01-13 04:00:14 +08:00
|
|
|
flat varying float tempOffsets;
|
|
|
|
uniform sampler2D colortex4;
|
|
|
|
uniform int frameCounter;
|
|
|
|
#include "/lib/util.glsl"
|
|
|
|
void main() {
|
2023-04-17 04:18:26 +08:00
|
|
|
|
2023-01-13 04:00:14 +08:00
|
|
|
tempOffsets = HaltonSeq2(frameCounter%10000);
|
|
|
|
gl_Position = ftransform();
|
2023-04-17 04:18:26 +08:00
|
|
|
texcoord = gl_MultiTexCoord0.xy;
|
|
|
|
exposureA = texelFetch2D(colortex4,ivec2(10,37),0).r;
|
2023-01-13 04:00:14 +08:00
|
|
|
}
|