Print al vender and version after initialized

This commit is contained in:
halx99 2020-08-20 22:37:34 +08:00
parent 3bdbde20bd
commit 4ecc8c7a02
1 changed files with 3 additions and 1 deletions

View File

@ -369,7 +369,9 @@ bool AudioEngineImpl::init()
_scheduler = Director::getInstance()->getScheduler();
ret = AudioDecoderManager::init();
ALOGI("OpenAL was initialized successfully!");
const char* vender = alGetString(AL_VENDOR);
const char* version = alGetString(AL_VERSION);
ALOGI("OpenAL was initialized successfully, vender:%s, version:%s", vender, version);
}
}while (false);