From ce1aad45055f0437fe852386b10be2bfd1ee3c48 Mon Sep 17 00:00:00 2001 From: Sil Vilerino Date: Mon, 9 Dec 2024 09:41:50 -0500 Subject: [PATCH] vl/vl_winsys: Add missing include for function declaration Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/12150 Fixes: 2548471ca1b ("vl/vl_win32_screen_create_from_d3d12_device: Allow winsys to be injected") Reviewed-by: Jesse Natalie Part-of: --- src/gallium/auxiliary/vl/vl_winsys.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/auxiliary/vl/vl_winsys.h b/src/gallium/auxiliary/vl/vl_winsys.h index afb1d9334e2..1324f920c78 100644 --- a/src/gallium/auxiliary/vl/vl_winsys.h +++ b/src/gallium/auxiliary/vl/vl_winsys.h @@ -46,6 +46,7 @@ extern "C" { #endif #include "pipe/p_defines.h" #include "util/format/u_formats.h" +#include "frontend/sw_winsys.h" struct pipe_screen; struct pipe_surface;