summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorXANTRONIX Development2022-03-16 01:41:19 -0400
committerXANTRONIX Development2022-03-16 01:41:24 -0400
commit9b3c0674ecd647f68736ab18897381c478d48546 (patch)
tree88abae164aa5ec71d4fd648f83b18c96ed54c484 /src
parentc37b073de965d23a172a5364af5e541d9738b12b (diff)
downloadxas-9b3c0674ecd647f68736ab18897381c478d48546.tar.gz
xas-9b3c0674ecd647f68736ab18897381c478d48546.tar.bz2
xas-9b3c0674ecd647f68736ab18897381c478d48546.zip
Relocate method in src/scene.c
Diffstat (limited to 'src')
-rw-r--r--src/spatial.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/spatial.c b/src/spatial.c
index ef05e19..b40adc7 100644
--- a/src/spatial.c
+++ b/src/spatial.c
@@ -616,6 +616,14 @@ void xas_spatial_scene_position_object(xas_spatial_scene *scene,
object_update_delays(scene);
}
+xas_audio_stream *xas_spatial_scene_stream_new(xas_spatial_scene *scene,
+ size_t buffer_size) {
+ return xas_audio_stream_new_source((xas_audio_fill)scene_fill,
+ NULL,
+ scene->format,
+ buffer_size,
+ scene);
+}
void xas_spatial_object_get_point(xas_spatial_object *object,
xas_spatial_coord *point) {
point->x = object->point.x;