Preprocessor Macros: Difference between revisions
Created page with "Some common preprocessor macros ==GLSL== <syntaxhighlight lang="c"> #define PI 3.14159265359 #define PI_2 1.57079632679 </syntaxhighlight>" |
|||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
Some common preprocessor macros | Some common preprocessor macros | ||
==Include Guard== | |||
For most modern compilers (MS Visual C++, GCC, Clang/llvm), you can just add a <code>#pragma once</code> at the top.<br> | |||
Note that this is not defined in the standard but [[Wikipedia: pragma once#Portability]] lists support for most common compilers. | |||
For older compilers: | |||
<syntaxhighlight lang="c"> | |||
#ifndef GRANDPARENT_H | |||
#define GRANDPARENT_H | |||
... contents of grandparent.h | |||
#endif /* !GRANDPARENT_H */ | |||
</syntaxhighlight> | |||
==GLSL== | ==GLSL== | ||
<syntaxhighlight lang="c"> | <syntaxhighlight lang="c"> | ||
#define PI 3. | #define PI 3.141592653589793 | ||
#define PI_2 1. | #define PI_2 1.5707963267948966 | ||
#define DEG2RAD 0.017453292519943295 | |||
#define RAD2DEG 57.29577951308232 | |||
#define sign(x) (int((x) > 0) - int((x) < 0)) | |||
#define imin(x, y) (int(x) * int(int(x) < int(y)) + int(y) * int(int(x) >= int(y))) | |||
#define imax(x, y) (int(x) * int(int(x) > int(y)) + int(y) * int(int(x) <= int(y))) | |||
#define iabs(x) ((x) * int((x) >= 0) - (x) * int((x) < 0)) | |||
</syntaxhighlight> | </syntaxhighlight> |
Latest revision as of 13:59, 1 June 2022
Some common preprocessor macros
Include Guard
For most modern compilers (MS Visual C++, GCC, Clang/llvm), you can just add a #pragma once
at the top.
Note that this is not defined in the standard but Wikipedia: pragma once#Portability lists support for most common compilers.
For older compilers:
#ifndef GRANDPARENT_H
#define GRANDPARENT_H
... contents of grandparent.h
#endif /* !GRANDPARENT_H */
GLSL
#define PI 3.141592653589793
#define PI_2 1.5707963267948966
#define DEG2RAD 0.017453292519943295
#define RAD2DEG 57.29577951308232
#define sign(x) (int((x) > 0) - int((x) < 0))
#define imin(x, y) (int(x) * int(int(x) < int(y)) + int(y) * int(int(x) >= int(y)))
#define imax(x, y) (int(x) * int(int(x) > int(y)) + int(y) * int(int(x) <= int(y)))
#define iabs(x) ((x) * int((x) >= 0) - (x) * int((x) < 0))