Browse Source

Audio: Print additional info on Context creation

Analog to `Magnum::Context`.

Signed-off-by: Squareys <Squareys@googlemail.com>
pull/111/head
Squareys 11 years ago
parent
commit
8b911c4ee3
  1. 4
      src/Magnum/Audio/Context.cpp

4
src/Magnum/Audio/Context.cpp

@ -54,6 +54,10 @@ Context::Context() {
alcMakeContextCurrent(_context);
_current = this;
/* Print some info */
Debug() << "Audio Renderer:" << rendererString() << "by" << vendorString();
Debug() << "OpenAL version:" << versionString();
}
Context::~Context() {

Loading…
Cancel
Save