Merge pull request #1208 from jamesu/datachunker_refactor

Datachunker & FrameAllocator refactor
This commit is contained in:
Brian Roberts 2024-02-09 20:32:39 -06:00 committed by GitHub
commit 25a3c3325f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 1222 additions and 682 deletions

View file

@ -39,6 +39,13 @@
//-----------------------------------------------------------------------------
SFXSoundscape::SFXSoundscape()
: mAmbience( NULL )
{
}
//-----------------------------------------------------------------------------
SFXSoundscape::SFXSoundscape( SFXAmbience* ambience )
: mAmbience( ambience )
{

View file

@ -106,6 +106,9 @@ class SFXSoundscape
bool _isUnique() const { return mFlags.test( FlagUnique ); }
public:
/// Defaault constructor for allocator
SFXSoundscape();
/// Create a soundscape associated with the given ambient space.
SFXSoundscape( SFXAmbience* ambience );