Skip to content

Commit

Permalink
fix: Update alcResetDeviceSOFT() & alcReopenDeviceSOFT() signatures
Browse files Browse the repository at this point in the history
ALCint *attribs param is no longer const
  • Loading branch information
mcb2003 committed Dec 28, 2024
1 parent f15c8bf commit 5f249fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cyal/device.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ cdef class Device:
cdef al.ALvoid* (*get_al_proc_address)(const al.ALchar*)
cdef void (*pause_soft)(alc.ALCdevice*)
cdef void (*resume_soft)(alc.ALCdevice*)
cdef alc.ALCboolean (*alc_reset_device_soft)(alc.ALCdevice* device, const alc.ALCint* attribs)
cdef alc.ALCboolean (*alc_reopen_device_soft)(alc.ALCdevice* device, const alc.ALCchar* name, const alc.ALCint* attribs)
cdef alc.ALCboolean (*alc_reset_device_soft)(alc.ALCdevice* device, alc.ALCint* attribs)
cdef alc.ALCboolean (*alc_reopen_device_soft)(alc.ALCdevice* device, const alc.ALCchar* name, alc.ALCint* attribs)

# Flags for extension emulation
cdef bint emulate_enumerate_all
Expand Down

0 comments on commit 5f249fd

Please sign in to comment.