Tweaked streaming Sources to use fewer OpenAL buffers (and increased the amount of decoded data per buffer to compensate), and removed some unnecessary #include statements.

This commit is contained in:
Alex Szpakowski
2014-09-28 14:58:59 -03:00
parent e2354acc65
commit 808e533b02
9 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -145,7 +145,7 @@ private:
ALuint source;
bool valid;
static const unsigned int MAX_BUFFERS = 32;
static const unsigned int MAX_BUFFERS = 8;
ALuint streamBuffers[MAX_BUFFERS];
Object::StrongRef<StaticDataBuffer> staticBuffer;