Skip to content

Commit 29fae57

Browse files
committed
Added ALC_EXT_TRACE_INFO and AL_EXT_TRACE_INFO to headers.
1 parent e1987d1 commit 29fae57

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

AL/al.h

+7
Original file line numberDiff line numberDiff line change
@@ -649,6 +649,13 @@ typedef void (AL_APIENTRY *LPALDOPPLERVELOCITY)(ALfloat value);
649649
typedef void (AL_APIENTRY *LPALSPEEDOFSOUND)(ALfloat value);
650650
typedef void (AL_APIENTRY *LPALDISTANCEMODEL)(ALenum distanceModel);
651651

652+
#define AL_EXT_TRACE_INFO 1
653+
typedef void (AL_APIENTRY *LPALTRACEPUSHSCOPE)(const ALchar *str);
654+
typedef void (AL_APIENTRY *LPALTRACEPOPSCOPE)(void);
655+
typedef void (AL_APIENTRY *LPALTRACEMESSAGE)(const ALchar *str);
656+
typedef void (AL_APIENTRY *LPALTRACEBUFFERLABEL)(ALuint name, const ALchar *str);
657+
typedef void (AL_APIENTRY *LPALTRACESOURCELABEL)(ALuint name, const ALchar *str);
658+
652659
#if defined(__cplusplus)
653660
} /* extern "C" */
654661
#endif

AL/alc.h

+4
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,10 @@ typedef void (ALC_APIENTRY *LPALCCAPTURESTART)(ALCdevice *device);
230230
typedef void (ALC_APIENTRY *LPALCCAPTURESTOP)(ALCdevice *device);
231231
typedef void (ALC_APIENTRY *LPALCCAPTURESAMPLES)(ALCdevice *device, ALCvoid *buffer, ALCsizei samples);
232232

233+
#define ALC_EXT_TRACE_INFO 1
234+
typedef void (AL_APIENTRY *LPALCTRACEDEVICELABEL)(ALCdevice *device, const ALCchar *str);
235+
typedef void (AL_APIENTRY *LPALCTRACECONTEXTLABEL)(ALCcontext *ctx, const ALCchar *str);
236+
233237
#if defined(__cplusplus)
234238
}
235239
#endif

0 commit comments

Comments
 (0)