mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
Added a RefType colorization type
This commit is contained in:
parent
09e6564b3e
commit
9bbcb8eb5e
9 changed files with 130 additions and 68 deletions
|
@ -77,7 +77,7 @@ struct int128
|
|||
};
|
||||
|
||||
#define BF_MIN(x, y) (((x) < (y)) ? (x) : (y))
|
||||
#define BF_MAX(x, y) (((x) > (y)) ? (x ): (y))
|
||||
#define BF_MAX(x, y) (((x) > (y)) ? (x) : (y))
|
||||
#define BF_CLAMP(val, minVal, maxVal) (((val) < (minVal)) ? (minVal) : ((val) > (maxVal)) ? (maxVal) : (val))
|
||||
#define BF_SWAP(a, b) { auto _a = (a); (a) = (b); (b) = (_a); }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue