Look for /arch:SSE with MSVC for SSE
[openal-soft.git] / OpenAL32 / alError.c
blobd18c1867a3ff399f16637d34dcb964886cf93cff
1 /**
2 * OpenAL cross platform audio library
3 * Copyright (C) 1999-2000 by authors.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
18 * Or go to http://www.gnu.org/copyleft/lgpl.html
21 #include "config.h"
23 #include <signal.h>
25 #include "alMain.h"
26 #include "AL/alc.h"
27 #include "alError.h"
29 ALboolean TrapALError = AL_FALSE;
31 ALvoid alSetError(ALCcontext *Context, ALenum errorCode)
33 if(TrapALError)
35 #ifdef _WIN32
36 /* DebugBreak will cause an exception if there is no debugger */
37 if(IsDebuggerPresent())
38 DebugBreak();
39 #elif defined(SIGTRAP)
40 raise(SIGTRAP);
41 #endif
43 CompExchangeInt(&Context->LastError, AL_NO_ERROR, errorCode);
46 AL_API ALenum AL_APIENTRY alGetError(void)
48 ALCcontext *Context;
49 ALenum errorCode;
51 Context = GetContextRef();
52 if(!Context)
54 if(TrapALError)
56 #ifdef _WIN32
57 if(IsDebuggerPresent())
58 DebugBreak();
59 #elif defined(SIGTRAP)
60 raise(SIGTRAP);
61 #endif
63 return AL_INVALID_OPERATION;
66 errorCode = ExchangeInt(&Context->LastError, AL_NO_ERROR);
68 ALCcontext_DecRef(Context);
70 return errorCode;