From 22128c747e0817f09c11b004016e6d7c518c1523 Mon Sep 17 00:00:00 2001 From: kartofen Date: Wed, 18 Oct 2023 21:00:52 +0300 Subject: swap chain support and minor reorganization --- src/common.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/common.h') diff --git a/src/common.h b/src/common.h index e10649a..1c80ab8 100644 --- a/src/common.h +++ b/src/common.h @@ -3,7 +3,6 @@ #include #include -#include #define ARR_SIZE(a) (sizeof(a)/sizeof(*(a))) @@ -24,9 +23,6 @@ abort(); \ } while(0) -#define MAKE_VERSION(major, minor, patch) \ - ((((uint32_t)(major)) << 22U) | (((uint32_t)(minor)) << 12U) | ((uint32_t)(patch))) - void *xmalloc(size_t size); void *xcalloc(size_t nmemb, size_t size); void *xrealloc(void *ptr, size_t size); -- cgit v1.2.3