diff options
author | chai <chaifix@163.com> | 2021-10-24 13:24:13 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-10-24 13:24:13 +0800 |
commit | 3239ba18797b1aa098056aa0c2a70e250a27a06c (patch) | |
tree | cb42710213cd188dd5f7c7841693c9ebe1b1915a /Editor/Utils | |
parent | 7bf672fd0c6211909d94078b448032b1bd0916ef (diff) |
* port shader
Diffstat (limited to 'Editor/Utils')
-rw-r--r-- | Editor/Utils/HelperFuncs.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Editor/Utils/HelperFuncs.h b/Editor/Utils/HelperFuncs.h index 626e48f..def1e23 100644 --- a/Editor/Utils/HelperFuncs.h +++ b/Editor/Utils/HelperFuncs.h @@ -9,3 +9,7 @@ extern void PrintCallStack(); #define GET_X_LPARAM(lp) ((int)(short)LOWORD(lp)) #define GET_Y_LPARAM(lp) ((int)(short)HIWORD(lp)) + +#ifndef Assert +#define Assert assert +#endif |