From e898f09c8348921558a96a13377fe975c70c5464 Mon Sep 17 00:00:00 2001 From: Glenn Watson Date: Tue, 9 Aug 2016 13:19:54 +1000 Subject: [PATCH] WR2 does not require the stencil buffer, so remove it from window properties. --- ports/glutin/window.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ports/glutin/window.rs b/ports/glutin/window.rs index 24fdf489654..46b2a16e921 100644 --- a/ports/glutin/window.rs +++ b/ports/glutin/window.rs @@ -157,10 +157,6 @@ impl Window { builder = builder.with_vsync(); } - if opts::get().use_webrender { - builder = builder.with_stencil_buffer(8); - } - if opts::get().use_msaa { builder = builder.with_multisampling(MULTISAMPLES) }