valora 0.2.12

A brush for generative fine art.
Documentation
1
2
3
4
5
6
7
8
9
10
#version 400

out vec4 frag;

uniform sampler2DMS texture_in;

void main() {
  ivec2 texel = ivec2(floor(gl_FragCoord.x), floor(gl_FragCoord.y)); 
  frag = texelFetch(texture_in, texel, gl_SampleID);
}