Compleetly disable stencil bits unless told not to by using the -Dforge.forceDisplayStencil=true flag. Should solve the 'menu in bottom corner' issue with Intel Integrated graphics cards.

This commit is contained in:
Lex Manos 2014-10-12 22:11:40 -07:00
parent 3aef547046
commit ae4f979318
1 changed files with 1 additions and 1 deletions

View File

@ -325,7 +325,7 @@ public class ForgeHooksClient
//According to ChickenBones, Mumfrey and Pig The only real use is in the FBO.
//So lets default to normal init to fix the issues yet add the bits to the FBO.
Display.create(format);
stencilBits = 8;
stencilBits = 0;
return;
}
try