mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-03-05 13:04:59 +01:00
46 lines
972 B
C
46 lines
972 B
C
/*
|
|
checkALerror.h
|
|
|
|
Author: C. Prince
|
|
Created: 8 November 2001
|
|
|
|
Error checking for OpenAL bindings
|
|
*/
|
|
|
|
#ifndef _CHECKALERROR_H_INCLUDED_
|
|
#define _CHECKALERROR_H_INCLUDED_
|
|
|
|
#ifdef _DEBUG
|
|
|
|
#include <jni.h>
|
|
#include "extal.h"
|
|
|
|
#define CHECK_AL_ERROR \
|
|
{ \
|
|
int err = alGetError(); \
|
|
if (err != AL_NO_ERROR) { \
|
|
jclass cls = env->FindClass("org/lwjgl/openal/OpenALException"); \
|
|
env->ThrowNew(cls, (const char*) alGetString(err)); \
|
|
env->DeleteLocalRef(cls); \
|
|
} \
|
|
}
|
|
/* only available if deviceaddress is specified in method */
|
|
#define CHECK_ALC_ERROR \
|
|
{ \
|
|
int err = alcGetError((ALCdevice*) deviceaddress); \
|
|
if (err != AL_NO_ERROR) { \
|
|
jclass cls = env->FindClass("org/lwjgl/openal/OpenALException"); \
|
|
env->ThrowNew(cls, (const char*) alcGetString((ALCdevice*) deviceaddress, err)); \
|
|
env->DeleteLocalRef(cls); \
|
|
} \
|
|
}
|
|
|
|
#else
|
|
|
|
#define CHECK_AL_ERROR
|
|
#define CHECK_ALC_ERROR
|
|
|
|
#endif /* _DEBUG */
|
|
|
|
#endif /* _CHECKALERROR_H_INCLUDED_ */
|