mirror of
https://github.com/X0nk/Bliss-Shader.git
synced 2025-01-06 01:23:31 +08:00
21 lines
405 B
V Shell
21 lines
405 B
V Shell
|
#version 120
|
||
|
#extension GL_EXT_gpu_shader4 : enable
|
||
|
|
||
|
|
||
|
varying vec2 texcoord;
|
||
|
flat varying float exposureA;
|
||
|
flat varying float tempOffsets;
|
||
|
uniform sampler2D colortex4;
|
||
|
uniform int frameCounter;
|
||
|
|
||
|
|
||
|
#include "/lib/util.glsl"
|
||
|
|
||
|
void main() {
|
||
|
|
||
|
tempOffsets = HaltonSeq2(frameCounter%10000);
|
||
|
gl_Position = ftransform();
|
||
|
texcoord = gl_MultiTexCoord0.xy;
|
||
|
exposureA = texelFetch2D(colortex4,ivec2(10,37),0).r;
|
||
|
}
|