The open source OpenXR runtime

c/util: improve includes

Part-of: <https://gitlab.freedesktop.org/monado/monado/-/merge_requests/2323>

authored by

Rylie Pavlik and committed by
Marge Bot
6e0a5355 75827a25

+7 -2
+7 -1
src/xrt/compositor/util/comp_render.h
··· 11 11 #pragma once 12 12 13 13 #include "xrt/xrt_defines.h" 14 - #include "xrt/xrt_vulkan_includes.h" 14 + #include "xrt/xrt_vulkan_includes.h" // IWYU pragma: keep 15 15 16 16 #include "render/render_interface.h" 17 + #include "util/u_misc.h" 18 + 19 + #include <assert.h> 17 20 18 21 19 22 #ifdef __cplusplus ··· 21 24 #endif 22 25 23 26 struct comp_layer; 27 + struct render_compute; 28 + struct render_gfx; 29 + struct render_gfx_target_resources; 24 30 25 31 26 32 /*!
-1
src/xrt/compositor/util/comp_render_gfx.c
··· 14 14 #include "math/m_api.h" 15 15 #include "math/m_mathinclude.h" 16 16 17 - #include "util/u_misc.h" 18 17 #include "util/u_trace_marker.h" 19 18 20 19 #include "vk/vk_helpers.h"