turn off antialias

This commit is contained in:
DD Liu 2019-08-28 16:22:29 -04:00
parent 131f5372db
commit afaa758615

View file

@ -104,7 +104,7 @@ class RenderWebGL extends EventEmitter {
* @private
*/
static _getContext (canvas) {
return twgl.getWebGLContext(canvas, {alpha: false, stencil: true});
return twgl.getWebGLContext(canvas, {alpha: false, stencil: true , antialias: false});
}
/**