c/util: improve includes

Part-of: <https://gitlab.freedesktop.org/monado/monado/-/merge_requests/2323>
This commit is contained in:
Rylie Pavlik 2024-08-28 12:46:36 -05:00 committed by Marge Bot
parent 75827a25bc
commit 6e0a5355a3
2 changed files with 7 additions and 2 deletions

View file

@ -11,9 +11,12 @@
#pragma once
#include "xrt/xrt_defines.h"
#include "xrt/xrt_vulkan_includes.h"
#include "xrt/xrt_vulkan_includes.h" // IWYU pragma: keep
#include "render/render_interface.h"
#include "util/u_misc.h"
#include <assert.h>
#ifdef __cplusplus
@ -21,6 +24,9 @@ extern "C" {
#endif
struct comp_layer;
struct render_compute;
struct render_gfx;
struct render_gfx_target_resources;
/*!

View file

@ -14,7 +14,6 @@
#include "math/m_api.h"
#include "math/m_mathinclude.h"
#include "util/u_misc.h"
#include "util/u_trace_marker.h"
#include "vk/vk_helpers.h"