From c4630587298dc9e238eb193a4b42be9f17d248d2 Mon Sep 17 00:00:00 2001 From: Relintai Date: Sun, 21 Apr 2024 10:34:59 +0200 Subject: [PATCH] Fix more missing includes. --- platform/frt/bits/egl_base_context.h | 2 ++ platform/frt/bits/frt_app_impl.h | 2 ++ platform/frt/bits/x11.h | 2 ++ 3 files changed, 6 insertions(+) diff --git a/platform/frt/bits/egl_base_context.h b/platform/frt/bits/egl_base_context.h index 1e436b71c..15570c84e 100644 --- a/platform/frt/bits/egl_base_context.h +++ b/platform/frt/bits/egl_base_context.h @@ -56,6 +56,8 @@ #include "dl/egl.gen.h" +#include "../frt.h" + namespace frt { class EGLBaseContext { diff --git a/platform/frt/bits/frt_app_impl.h b/platform/frt/bits/frt_app_impl.h index 21202357d..6a56f4657 100644 --- a/platform/frt/bits/frt_app_impl.h +++ b/platform/frt/bits/frt_app_impl.h @@ -59,6 +59,8 @@ #include #include +#include "../frt.h" + namespace frt { void fatal(const char *format, ...) { diff --git a/platform/frt/bits/x11.h b/platform/frt/bits/x11.h index abaed1c28..7ab362748 100644 --- a/platform/frt/bits/x11.h +++ b/platform/frt/bits/x11.h @@ -58,6 +58,8 @@ #include "dl/x11.gen.h" +#include "../frt.h" + namespace frt { class X11Context;