Try and clear up GC issues (requires clean build)

This commit is contained in:
Joshua Granick
2016-09-26 14:25:32 -07:00
parent 1c5ca75b67
commit eb11502ecd
24 changed files with 522 additions and 177 deletions

View File

@@ -3,7 +3,7 @@
#include <hx/CFFI.h>
#include <utils/Bytes.h>
#include <utils/ArrayBufferView.h>
#ifdef ANDROID
#include <android/log.h>
@@ -35,6 +35,7 @@ namespace lime {
public:
AudioBuffer ();
AudioBuffer (value audioBuffer);
~AudioBuffer ();
value Value ();
@@ -42,7 +43,7 @@ namespace lime {
int bitsPerSample;
int channels;
int sampleRate;
Bytes *data;
ArrayBufferView *data;
private: