Skip to content

Commit

Permalink
Add AL.deleteBuffer, AL.deleteFilter
Browse files Browse the repository at this point in the history
  • Loading branch information
Raltyro authored Jul 21, 2024
1 parent 6350af7 commit 648514e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/lime/media/openal/AL.hx
Original file line number Diff line number Diff line change
Expand Up @@ -412,6 +412,20 @@ class AL
#end
}

public static function deleteEffect(effect:ALEffect):Void
{
#if (lime_cffi && lime_openal && !macro)
NativeCFFI.lime_al_delete_effect(effect);
#end
}

public static function deleteFilter(filter:ALFilter):Void
{
#if (lime_cffi && lime_openal && !macro)
NativeCFFI.lime_al_delete_filter(filter);
#end
}

public static function deleteSource(source:ALSource):Void
{
#if (lime_cffi && lime_openal && !macro)
Expand Down

0 comments on commit 648514e

Please sign in to comment.