new ui conception rect_cut+ryan memes

This commit is contained in:
Krzosa Karol
2025-01-17 10:59:35 +01:00
parent 3151a84ffe
commit 0ad84c9fc7
5 changed files with 378 additions and 32 deletions

View File

@@ -67,10 +67,14 @@ typedef double f64;
#define defer_if(begin, cond_end) for (b32 PASTE(_i_, __LINE__) = !!begin; PASTE(_i_, __LINE__); PASTE(_i_, __LINE__) = (cond_end, 0))
#define defer_block(begin, end) for (i32 PASTE(_i_, __LINE__) = (begin, 0); !PASTE(_i_, __LINE__); PASTE(_i_, __LINE__) += (end, 1))
#define stack_t(type, size) struct { type data[size]; i32 len; }
#define STACK_PUSH(stack, ...) (assert((stack).len < lengthof((stack).data)), (stack).data[(stack).len++] = __VA_ARGS__)
#define STACK_POP(stack) (assert((stack).len > 0), (stack).data[--(stack).len])
#define STACK_TOP(stack) (assert((stack).len > 0), (stack).data[((stack).len-1)])
#define STACK_CAP(stack) (lengthof((stack).data))
#define STACK_EMPTY(stack) ((stack).len == 0)
#define STACK_FULL(stack) ((stack).len == STACK_CAP(stack))
#define STACK_PUSH(stack, ...) (assert(!STACK_FULL(stack)), (stack).data[(stack).len++] = __VA_ARGS__)
#define STACK_POP(stack) (assert(!STACK_EMPTY(stack)), (stack).data[--(stack).len])
#define STACK_TOP(stack) (assert(!STACK_EMPTY(stack)), (stack).data[((stack).len-1)])
#define STRINGIFY_(S) #S
#define STRINGIFY(S) STRINGIFY_(S)
@@ -89,11 +93,11 @@ typedef double f64;
#endif
#if PLATFORM_CL
#define fn_force_inline __forceinline
#define fn_inline __forceinline
#elif PLATFORM_CLANG || PLATFORM_GCC
#define fn_force_inline __attribute__((always_inline))
#define fn_inline __attribute__((always_inline))
#else
#define fn_force_inline
#define fn_inline
#endif
#ifndef FILE_AND_LINE_GCC_FORMAT