audio: beginnings of audio system #372
No reviewers
Labels
No labels
CI
all
basisu
blog
bug
build
contributor-friendly
core
correctness
deferred
dev
direct3d-headers
docs
driver-os-issue
duplicate
dxcompiler
editor
examples
experiment
feature-idea
feedback
flac
freetype
gamemode
gkurve
glfw
gpu
gpu-dawn
harfbuzz
help welcome
in-progress
infrastructure
invalid
libmach
linux-audio-headers
long-term
mach
mach.gfx
mach.math
mach.physics
mach.testing
model3d
needs-triage
object
opengl-headers
opus
os/linux
os/macos
os/wasm
os/windows
package-manager
priority
proposal
proposal-accepted
question
roadmap
slipped
stability
sysaudio
sysgpu
sysjs
validating-fix
vulkan-zig-generated
wayland-headers
website
wontfix
wrench
www
x11-headers
xcode-frameworks
zig-update
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
hexops/mach!372
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "main"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Looks like a great starting point, thanks!
a lot of changes coming... :)sorry i could not get enough time and delayed you guys, so I think it would be better to merge this now. i will write the rest in another PR.
@ -0,0 +6,4 @@pub const pkg = std.build.Pkg{.name = "soundio",.source = .{ .path = thisDir() ++ "/soundio/main.zig" },};this should point to
audio/main.zigright? We can do this in another PR, just making a note@ -0,0 +14,4 @@alsa: bool = false,coreaudio: bool = false,wasapi: bool = false,};I'm not sure we should make these options public at all.
@ -0,0 +34,4 @@step.addIncludePath(soundio_path);}pub fn buildSoundIo(b: *Builder, step: *std.build.LibExeObjStep, options: SoundIoOptions) *std.build.LibExeObjStep {I'd suggest we also do not make this public.
Nice work!