mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 04:58:05 +02:00
swr: [rasterizer common] guard definition of __cdecl/__stdcall
Reviewed-by: Bruce Cherniak <bruce.cherniak@intel.com>
This commit is contained in:
parent
82e335ce67
commit
aebbd2f7dd
1 changed files with 4 additions and 0 deletions
|
|
@ -93,8 +93,12 @@ typedef unsigned int DWORD;
|
||||||
#endif
|
#endif
|
||||||
#define DEBUGBREAK asm ("int $3")
|
#define DEBUGBREAK asm ("int $3")
|
||||||
#if !defined(__CYGWIN__)
|
#if !defined(__CYGWIN__)
|
||||||
|
#ifndef __cdecl
|
||||||
#define __cdecl
|
#define __cdecl
|
||||||
|
#endif
|
||||||
|
#ifndef __stdcall
|
||||||
#define __stdcall
|
#define __stdcall
|
||||||
|
#endif
|
||||||
#define __declspec(X)
|
#define __declspec(X)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue