Bliss-Shader/shaders/composite5.vsh

19 lines
431 B
V Shell
Raw Normal View History

2023-01-12 15:00:14 -05:00
#version 120
#extension GL_EXT_gpu_shader4 : enable
2023-01-12 15:28:19 -05:00
#include "lib/settings.glsl"
2023-01-12 15:00:14 -05:00
varying vec2 texcoord;
flat varying float exposureA;
2023-01-12 15:00:14 -05:00
flat varying float tempOffsets;
uniform sampler2D colortex4;
uniform int frameCounter;
#include "/lib/util.glsl"
void main() {
2023-01-12 15:00:14 -05:00
tempOffsets = HaltonSeq2(frameCounter%10000);
gl_Position = ftransform();
texcoord = gl_MultiTexCoord0.xy;
exposureA = texelFetch2D(colortex4,ivec2(10,37),0).r;
2023-01-12 15:00:14 -05:00
}