Skip to content
Snippets Groups Projects
Commit 0bad1963 authored by Florent Berthaut's avatar Florent Berthaut
Browse files

Add license and authors files

parent 44aa02db
No related branches found
No related tags found
No related merge requests found
* Florent Berthaut
LICENSE 0 → 100644
This diff is collapsed.
......@@ -92,7 +92,7 @@ if env["platform"] == "linux":
'-fomit-frame-pointer'])
env.Append(CXXFLAGS=['-std=c++17'])
elif env["platform"] == "android":
env.Append(CPPDEFINES=['__UNSPECIFIED__', 'HAVE_LIBDL'])
env.Append(CPPDEFINES=['__UNSPECIFIED__', 'HAVE_LIBDL', 'ANDROID'])
env.Append(CFLAGS=['-Wno-int-to-pointer-cast', '-Wno-pointer-to-int-cast',
'-Wno-discarded-qualifiers',
'-fPIC', '-O3', '-ffast-math', '-funroll-loops',
......
......@@ -33,15 +33,15 @@
#include <godot_cpp/classes/viewport.hpp>
#include <godot_cpp/core/binder_common.hpp>
#include <godot_cpp/classes/engine.hpp>
#include <godot_cpp/classes/audio_stream_player.hpp>
#include <godot_cpp/classes/audio_stream.hpp>
#include "PdBase.hpp"
#include "RtAudio.h"
using namespace godot;
class GdPd : public AudioStreamPlayer, public pd::PdReceiver {
GDCLASS(GdPd, AudioStreamPlayer);
class GdPd : public AudioStream, public pd::PdReceiver {
GDCLASS(GdPd, AudioStream);
protected:
static void _bind_methods();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment