glsl-halftone

1.0.4 • Public • Published

glsl-halftone

stable

halftone

(glslbin demo)

A halftone shader in GLSL, adapted from Stefan Gustavson's work here. Bilinear texture sampling and minification are left up to the user to implement (see steps 5 and 9 in Gustavson's tutorial).

For anti-aliasing, you should enable standard derivatives at the top of your shader, before requiring this module.

precision highp float;
 
#ifdef GL_OES_standard_derivatives
#extension GL_OES_standard_derivatives : enable
#endif
 
varying vec2 uv;
uniform vec2 iResolution;
uniform sampler2D u_sampler;
 
#pragma glslify: halftone require('glsl-halftone') 
 
void main() {
  //sample from texture; optionally using manual bilinear filtering 
  vec4 texcolor = texture2D(u_sampler, uv);
 
  //aspect corrected texture coordinates 
  vec2 st = uv;
  st.x *= iResolution.x / iResolution.y;
  
  //apply halftone effect 
  gl_FragColor.rgb = halftone(texcolor.rgb, st);
  gl_FragColor.a = 1.0;
}

Usage

NPM

vec3 halftone(vec3 color, vec2 uv[, float frequency])

Applies a halftone effect to the given texture color using the uv coordinates. Higher frequency (default 30.0) leads to more tiling and smaller circles. Returns the RGB result.

Contributing

See stackgl/contributing for details.

License

The halftone effect is public domain, by Stefan Gustavson. This also uses Ashima's glsl-noise, which is MIT.

The rest of the adaptation is MIT, see LICENSE.md for details.

Package Sidebar

Install

npm i glsl-halftone

Weekly Downloads

6

Version

1.0.4

License

MIT

Last publish

Collaborators

  • hughsk
  • mikolalysenko
  • mattdesl
  • chrisdickinson
  • yoshuawuyts
  • mikkoh
  • rezaali
  • tatumcreative
  • wwwtyro
  • thibauts
  • bpostlethwaite
  • dfcreative
  • erkaman
  • gre
  • rreusser
  • vorg
  • archmoj
  • dy