Files
test2/source/blender/draw/intern/draw_manager_text.hh
Laurynas Duburas 4948ade694 Overlay-Next: Edit-Mesh measurements
Overlay-Next version of mesh measurements.

Rel #102179

Pull Request: https://projects.blender.org/blender/blender/pulls/127124
2024-09-06 16:45:40 +02:00

51 lines
1.4 KiB
C++

/* SPDX-FileCopyrightText: 2016 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup draw
*/
#include "BLI_sys_types.h"
#pragma once
struct ARegion;
struct DRWTextStore;
struct Object;
struct UnitSettings;
struct View3D;
DRWTextStore *DRW_text_cache_create();
void DRW_text_cache_destroy(DRWTextStore *dt);
/* `draw_manager.cc` */
DRWTextStore *DRW_text_cache_ensure();
void DRW_text_cache_add(DRWTextStore *dt,
const float co[3],
const char *str,
int str_len,
short xoffs,
short yoffs,
short flag,
const uchar col[4],
const bool shadow = false,
const bool align_center = false);
void DRW_text_cache_draw(DRWTextStore *dt, ARegion *region, View3D *v3d);
void DRW_text_edit_mesh_measure_stats(const ARegion *region,
const View3D *v3d,
const Object *ob,
const UnitSettings *unit,
DRWTextStore *dt = DRW_text_cache_ensure());
enum {
// DRW_UNUSED_1 = (1 << 0), /* dirty */
DRW_TEXT_CACHE_GLOBALSPACE = (1 << 1),
DRW_TEXT_CACHE_LOCALCLIP = (1 << 2),
/* reference the string by pointer */
DRW_TEXT_CACHE_STRING_PTR = (1 << 3),
};