1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-29 02:40:05 +00:00

Fixed an image anti-aliasing problem. Created some new methods in AudioIODeviceType to create device-specific types. Tidied up some win32 DLL build problems. Added support for drag-and-drop from iTunes on mac.

This commit is contained in:
Julian Storer 2011-02-04 12:20:04 +00:00
parent c26ac47dff
commit 571a2626da
27 changed files with 1095 additions and 413 deletions

View file

@ -592,16 +592,10 @@ private:
};
//==============================================================================
AudioIODeviceType* juce_createAudioIODeviceType_JACK()
AudioIODeviceType* AudioIODeviceType::createAudioIODeviceType_JACK()
{
return new JackAudioIODeviceType();
}
//==============================================================================
#else // if JACK is turned off..
AudioIODeviceType* juce_createAudioIODeviceType_JACK() { return 0; }
#endif
#endif