diff options
author | Mikhail Burakov <mburakov@mailbox.org> | 2023-04-08 14:05:46 +0200 |
---|---|---|
committer | Mikhail Burakov <mburakov@mailbox.org> | 2023-04-09 10:26:23 +0200 |
commit | d0c6311e9c9547a9ee10310edf0c47230e15ccbb (patch) | |
tree | 3877815a7ba8460325a65f6e4411628ec8b3ceda /gpu.c | |
parent | e2cb86dd9b565bbbd61a4ed369f2c31960979755 (diff) |
Replace util and perf with toolbox counterparts
Diffstat (limited to 'gpu.c')
-rw-r--r-- | gpu.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -36,8 +36,9 @@ #include <gbm.h> #endif // USE_EGL_MESA_PLATFORM_SURFACELESS -#include "util.h" +#include "toolbox/utils.h" +#define _(...) __VA_ARGS__ #define LOOKUP_FUNCTION(a, b) \ gpu_context->b = (a)eglGetProcAddress(#b); \ if (!gpu_context->b) { \ |