16 lines
318 B
C++
16 lines
318 B
C++
/* SPDX-License-Identifier: GPL-2.0-or-later
|
|
* Copyright 2016 Blender Foundation. */
|
|
|
|
/** \file
|
|
* \ingroup draw
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
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);
|