Skip to content

Commit

Permalink
Added ALC_EXT_TRACE_INFO and AL_EXT_TRACE_INFO to headers.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Aug 22, 2019
1 parent e1987d1 commit 29fae57
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
7 changes: 7 additions & 0 deletions AL/al.h
Expand Up @@ -649,6 +649,13 @@ typedef void (AL_APIENTRY *LPALDOPPLERVELOCITY)(ALfloat value);
typedef void (AL_APIENTRY *LPALSPEEDOFSOUND)(ALfloat value);
typedef void (AL_APIENTRY *LPALDISTANCEMODEL)(ALenum distanceModel);

#define AL_EXT_TRACE_INFO 1
typedef void (AL_APIENTRY *LPALTRACEPUSHSCOPE)(const ALchar *str);
typedef void (AL_APIENTRY *LPALTRACEPOPSCOPE)(void);
typedef void (AL_APIENTRY *LPALTRACEMESSAGE)(const ALchar *str);
typedef void (AL_APIENTRY *LPALTRACEBUFFERLABEL)(ALuint name, const ALchar *str);
typedef void (AL_APIENTRY *LPALTRACESOURCELABEL)(ALuint name, const ALchar *str);

#if defined(__cplusplus)
} /* extern "C" */
#endif
Expand Down
4 changes: 4 additions & 0 deletions AL/alc.h
Expand Up @@ -230,6 +230,10 @@ typedef void (ALC_APIENTRY *LPALCCAPTURESTART)(ALCdevice *device);
typedef void (ALC_APIENTRY *LPALCCAPTURESTOP)(ALCdevice *device);
typedef void (ALC_APIENTRY *LPALCCAPTURESAMPLES)(ALCdevice *device, ALCvoid *buffer, ALCsizei samples);

#define ALC_EXT_TRACE_INFO 1
typedef void (AL_APIENTRY *LPALCTRACEDEVICELABEL)(ALCdevice *device, const ALCchar *str);
typedef void (AL_APIENTRY *LPALCTRACECONTEXTLABEL)(ALCcontext *ctx, const ALCchar *str);

#if defined(__cplusplus)
}
#endif
Expand Down

0 comments on commit 29fae57

Please sign in to comment.