🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
235 B

  1. varying vec2 texcoord;
  2. uniform sampler2D tex;
  3. uniform float intensity_scale;
  4. uniform float gamma;
  5. void main()
  6. {
  7. vec4 rgba = texture2D(tex, texcoord);
  8. gl_FragColor = vec4(pow(intensity_scale * rgba.rgb, vec3(1.0 / gamma)), 1.0);
  9. }