xref: /aosp_15_r20/external/mesa3d/src/gallium/frontends/nine/nine_flags.h (revision 6104692788411f58d303aa86923a9ff6ecaded22)
1 /*
2  * Copyright Axel Davy <[email protected]>
3  * SPDX-License-Identifier: MIT
4  */
5 
6 #ifndef _NINE_FLAGS_H_
7 #define _NINE_FLAGS_H_
8 
9 #include "util/compiler.h"
10 
11 /* Incoming 32 bits calls are 4-byte aligned.
12  * We need to realign them to be able to use
13  * SSE and to work with other libraries (llvm, etc)
14  */
15 #define NINE_WINAPI WINAPI UTIL_ALIGN_STACK
16 
17 #endif /* _NINE_FLAGS_H_ */
18