Improves OpenGL-ES support (especially for Raspberry Pi), contribution of Erkki Nokso-Koivisto, temporarily disables EFX in JoalAudioRenderer

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10299 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
jul..om 2013-02-01 22:05:06 +00:00
parent 723ec34a15
commit aec78ea21f

View File

@ -198,7 +198,8 @@ public class JoalAudioRenderer implements AudioRenderer, Runnable {
logger.log(Level.FINE, "AudioRenderer supports {0} channels", channels.length);
supportEfx = alc.alcIsExtensionPresent(device, "ALC_EXT_EFX");
supportEfx = false;//FIXME update JOAL with EFX support
//supportEfx = alc.alcIsExtensionPresent(device, "ALC_EXT_EFX");
if (supportEfx) {
ib.position(0).limit(1);
alc.alcGetIntegerv(device, AL.ALC_EFX_MAJOR_VERSION, 1, ib);