From f75ba4f9e36acaae81922a317c7fccae84c713e6 Mon Sep 17 00:00:00 2001 From: Karol Herbst Date: Tue, 16 Apr 2024 16:50:39 +0200 Subject: [PATCH] rusticl: stop using system headers for CL and GL Cc: mesa-stable Reviewed-by: Adam Jackson Part-of: --- src/gallium/frontends/rusticl/rusticl_opencl_bindings.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gallium/frontends/rusticl/rusticl_opencl_bindings.h b/src/gallium/frontends/rusticl/rusticl_opencl_bindings.h index dd3d2e339bc..0207047b028 100644 --- a/src/gallium/frontends/rusticl/rusticl_opencl_bindings.h +++ b/src/gallium/frontends/rusticl/rusticl_opencl_bindings.h @@ -1,8 +1,8 @@ -#include -#include -#include +#include "CL/cl_icd.h" +#include "GL/gl.h" +#include "EGL/egl.h" #ifdef HAVE_X11_PLATFORM -#include +#include "GL/glx.h" #endif #include "GL/mesa_glinterop.h"