var gl = canvas.getContext('webgl', { stencil: true });
According to WebGL Spec, this line of code will ask the drawing buffer to have a stencil buffer of at least 8 bits.
But will that add any performance cost? Is it suitable to always asking one in an rendering engine?
(Google-Chrome? / Firefox?)