SL-18837: Add OpenAL::createDefaultStreamingAudioImpl().
LLAudioEngine added a new abstract virtual method that wasn't yet implemented for LLStreamingAudio_OpenAL.master
parent
eb84585875
commit
6cb906c449
|
|
@ -119,6 +119,11 @@ std::string LLAudioEngine_OpenAL::getDriverName(bool verbose)
|
|||
return version.str();
|
||||
}
|
||||
|
||||
LLStreamingAudioInterface *LLAudioEngine_OpenAL::createDefaultStreamingAudioImpl() const
|
||||
{
|
||||
return new LLStreamingAudio_OpenAL();
|
||||
}
|
||||
|
||||
// virtual
|
||||
void LLAudioEngine_OpenAL::allocateListener()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -40,8 +40,9 @@ class LLAudioEngine_OpenAL : public LLAudioEngine
|
|||
LLAudioEngine_OpenAL();
|
||||
virtual ~LLAudioEngine_OpenAL();
|
||||
|
||||
virtual bool init(void *user_data, const std::string &app_title);
|
||||
virtual std::string getDriverName(bool verbose);
|
||||
virtual bool init(void *user_data, const std::string &app_title);
|
||||
virtual std::string getDriverName(bool verbose);
|
||||
virtual LLStreamingAudioInterface* createDefaultStreamingAudioImpl() const;
|
||||
virtual void allocateListener();
|
||||
|
||||
virtual void shutdown();
|
||||
|
|
|
|||
Loading…
Reference in New Issue