Renderer : Caps.Multisample is now correctly added to the renderer caps when GL_ARB_multisample is present in ogl caps

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@9581 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
rem..om 2012-07-23 16:13:01 +00:00
parent 94f424f203
commit 4f848ab5b5

View File

@ -382,6 +382,7 @@ public class LwjglRenderer implements Renderer {
if (samples > 0 && available && !enabled) {
glEnable(ARBMultisample.GL_MULTISAMPLE_ARB);
}
caps.add(Caps.Multisample);
}
logger.log(Level.INFO, "Caps: {0}", caps);