Also see #103343. Pull Request: https://projects.blender.org/blender/blender/pulls/110509
25 lines
403 B
C
25 lines
403 B
C
/* SPDX-FileCopyrightText: 2016 Blender Foundation
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup draw
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void DRW_draw_region_info(void);
|
|
void DRW_clear_background(void);
|
|
void DRW_draw_cursor(void);
|
|
void DRW_draw_cursor_2d(void);
|
|
void DRW_draw_gizmo_3d(void);
|
|
void DRW_draw_gizmo_2d(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|