u/var: Add u_native_images_debug

This commit is contained in:
Jakob Bornecrantz 2023-09-18 18:05:06 +01:00
parent 3e76d43c30
commit 92f5b0c1a6

View file

@ -1,4 +1,4 @@
// Copyright 2019-2023, Collabora, Ltd.
// Copyright 2019-2024, Collabora, Ltd.
// SPDX-License-Identifier: BSL-1.0
/*!
* @file
@ -21,6 +21,7 @@ extern "C" {
struct xrt_frame_sink;
struct u_sink_debug;
struct u_native_images_debug;
struct m_ff_f64;
struct m_ff_vec3_f32;
@ -225,6 +226,7 @@ enum u_var_kind
U_VAR_KIND_VEC3_F32,
U_VAR_KIND_POSE,
U_VAR_KIND_SINK_DEBUG,
U_VAR_KIND_NATIVE_IMAGES_DEBUG,
U_VAR_KIND_LOG_LEVEL,
U_VAR_KIND_RO_TEXT,
U_VAR_KIND_RO_FTEXT,
@ -381,6 +383,7 @@ u_var_force_on(void);
ADD_FUNC(vec3_f32, struct xrt_vec3, VEC3_F32) \
ADD_FUNC(pose, struct xrt_pose, POSE) \
ADD_FUNC(sink_debug, struct u_sink_debug, SINK_DEBUG) \
ADD_FUNC(native_images_debug, struct u_native_images_debug, NATIVE_IMAGES_DEBUG) \
ADD_FUNC(log_level, enum u_logging_level, LOG_LEVEL) \
ADD_FUNC(ro_text, const char, RO_TEXT) \
ADD_FUNC(ro_ftext, const char, RO_FTEXT) \