Listing the "Blender Foundation" as copyright holder implied the Blender Foundation holds copyright to files which may include work from many developers. While keeping copyright on headers makes sense for isolated libraries, Blender's own code may be refactored or moved between files in a way that makes the per file copyright holders less meaningful. Copyright references to the "Blender Foundation" have been replaced with "Blender Authors", with the exception of `./extern/` since these this contains libraries which are more isolated, any changed to license headers there can be handled on a case-by-case basis. Some directories in `./intern/` have also been excluded: - `./intern/cycles/` it's own `AUTHORS` file is planned. - `./intern/opensubdiv/`. An "AUTHORS" file has been added, using the chromium projects authors file as a template. Design task: #110784 Ref !110783.
55 lines
1.3 KiB
C
55 lines
1.3 KiB
C
/* SPDX-FileCopyrightText: 2016 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup draw
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct ARegion;
|
|
struct DRWTextStore;
|
|
struct Object;
|
|
struct UnitSettings;
|
|
struct View3D;
|
|
|
|
struct DRWTextStore *DRW_text_cache_create(void);
|
|
void DRW_text_cache_destroy(struct DRWTextStore *dt);
|
|
|
|
void DRW_text_cache_add(struct DRWTextStore *dt,
|
|
const float co[3],
|
|
const char *str,
|
|
int str_len,
|
|
short xoffs,
|
|
short yoffs,
|
|
short flag,
|
|
const uchar col[4]);
|
|
|
|
void DRW_text_cache_draw(struct DRWTextStore *dt, struct ARegion *region, struct View3D *v3d);
|
|
|
|
void DRW_text_edit_mesh_measure_stats(struct ARegion *region,
|
|
struct View3D *v3d,
|
|
struct Object *ob,
|
|
const struct UnitSettings *unit);
|
|
|
|
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),
|
|
};
|
|
|
|
/* `draw_manager.cc` */
|
|
|
|
struct DRWTextStore *DRW_text_cache_ensure(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|