Added image loading
Added some string functions and macros Added path listing on windows Added assets
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
#if !defined(LD_CORE_ARENA_H_)
|
||||
#define LD_CORE_ARENA_H_
|
||||
|
||||
#define AlignUp(x, a) (((x) + ~((a) - 1)) & ~((a) - 1))
|
||||
#define AlignUp(x, a) (((x) + ((a) - 1)) & ~((a) - 1))
|
||||
#define AlignDown(x, a) (((x)) & ~((a) - 1))
|
||||
|
||||
#define KB(x) ((U64) (x) << 10)
|
||||
|
||||
Reference in New Issue
Block a user