WR2 does not require the stencil buffer, so remove it from window properties.

This commit is contained in:
Glenn Watson 2016-08-09 13:19:54 +10:00
parent ce01120fb1
commit e898f09c83

View file

@ -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)
}