From a2419eb4ea06d92eef8b6196e27a7de1b57e51e6 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Thu, 24 Jun 2021 12:10:12 +0200 Subject: render/egl: make most functions private The wlr_egl functions are mostly used internally by the GLES2 renderer. Let's reduce our API surface a bit by hiding them. If there are good use-cases for one of these, we can always make them public again. The functions mutating the current EGL context are not made private because e.g. Wayfire uses them. --- render/egl.c | 1 + 1 file changed, 1 insertion(+) (limited to 'render/egl.c') diff --git a/render/egl.c b/render/egl.c index 616b3c6b..7f88880c 100644 --- a/render/egl.c +++ b/render/egl.c @@ -10,6 +10,7 @@ #include #include #include +#include "render/egl.h" static enum wlr_log_importance egl_log_importance_to_wlr(EGLint type) { switch (type) { -- cgit v1.2.3