Bliss-Shader/shaders/composite5.vsh

19 lines
431 B
V Shell
Raw Normal View History

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 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-01-13 04:00:14 +08:00
tempOffsets = HaltonSeq2(frameCounter%10000);
gl_Position = ftransform();
texcoord = gl_MultiTexCoord0.xy;
exposureA = texelFetch2D(colortex4,ivec2(10,37),0).r;
2023-01-13 04:00:14 +08:00
}