mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-02-17 19:20:13 +00:00
c/null: Small Cleanups
Part-of: <https://gitlab.freedesktop.org/monado/monado/-/merge_requests/2342>
This commit is contained in:
parent
91de043eb6
commit
23038a9cad
src/xrt/compositor/null
|
@ -4,7 +4,7 @@
|
||||||
* @file
|
* @file
|
||||||
* @brief Null compositor implementation.
|
* @brief Null compositor implementation.
|
||||||
*
|
*
|
||||||
* Based on src/xrt/compositor/main/comp_compositor.c
|
* Originally based on src/xrt/compositor/main/comp_compositor.c
|
||||||
*
|
*
|
||||||
* @author Jakob Bornecrantz <jakob@collabora.com>
|
* @author Jakob Bornecrantz <jakob@collabora.com>
|
||||||
* @author Lubosz Sarnecki <lubosz.sarnecki@collabora.com>
|
* @author Lubosz Sarnecki <lubosz.sarnecki@collabora.com>
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
// Copyright 2019-2022, Collabora, Ltd.
|
// Copyright 2019-2024, Collabora, Ltd.
|
||||||
// SPDX-License-Identifier: BSL-1.0
|
// SPDX-License-Identifier: BSL-1.0
|
||||||
/*!
|
/*!
|
||||||
* @file
|
* @file
|
||||||
* @brief Header for null compositor.
|
* @brief Internal header for null compositor.
|
||||||
*
|
*
|
||||||
* Based on src/xrt/compositor/main/comp_compositor.h
|
* Originally based on src/xrt/compositor/main/comp_compositor.h
|
||||||
*
|
*
|
||||||
* @author Jakob Bornecrantz <jakob@collabora.com>
|
* @author Jakob Bornecrantz <jakob@collabora.com>
|
||||||
* @author Lubosz Sarnecki <lubosz.sarnecki@collabora.com>
|
* @author Lubosz Sarnecki <lubosz.sarnecki@collabora.com>
|
||||||
|
@ -14,22 +14,23 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "xrt/xrt_gfx_vk.h"
|
|
||||||
#include "xrt/xrt_instance.h"
|
#include "xrt/xrt_instance.h"
|
||||||
|
|
||||||
#include "os/os_time.h"
|
|
||||||
|
|
||||||
#include "util/u_threading.h"
|
|
||||||
#include "util/u_logging.h"
|
#include "util/u_logging.h"
|
||||||
#include "util/u_pacing.h"
|
#include "util/u_pacing.h"
|
||||||
|
|
||||||
#include "util/comp_base.h"
|
#include "util/comp_base.h"
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
struct xrt_device;
|
||||||
|
struct u_pacing_compositor;
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* @defgroup comp_null Null compositor
|
* @defgroup comp_null Null compositor
|
||||||
* @ingroup xrt
|
* @ingroup xrt
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// Copyright 2019-2022, Collabora, Ltd.
|
// Copyright 2019-2024, Collabora, Ltd.
|
||||||
// SPDX-License-Identifier: BSL-1.0
|
// SPDX-License-Identifier: BSL-1.0
|
||||||
/*!
|
/*!
|
||||||
* @file
|
* @file
|
||||||
|
@ -11,7 +11,7 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "xrt/xrt_compiler.h"
|
#include "xrt/xrt_results.h"
|
||||||
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
Loading…
Reference in a new issue