Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-10-06 02:44:11 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-10-06 02:55:34 +0300
commitfd592538d983bec51e331f1d073c39582d43520f (patch)
tree9e767692b403fd25ba559be64030f832f5fb3ce6 /source/blender/blenlib/BLI_vfontdata.h
parent26dac33ce18f8a5655883b759d271da4a9b94982 (diff)
Cleanup: move BLI_vfontdata.h to BKE_vfontdata.h
This didn't belong on blenlib since it uses DNA data types and included a bad-level call to BKE_curve.h. It also meant linking in blenlib would depend on the freetype library, noticeable for thumbnail extraction (see D6408).
Diffstat (limited to 'source/blender/blenlib/BLI_vfontdata.h')
-rw-r--r--source/blender/blenlib/BLI_vfontdata.h60
1 files changed, 0 insertions, 60 deletions
diff --git a/source/blender/blenlib/BLI_vfontdata.h b/source/blender/blenlib/BLI_vfontdata.h
deleted file mode 100644
index 0bb32ca24b7..00000000000
--- a/source/blender/blenlib/BLI_vfontdata.h
+++ /dev/null
@@ -1,60 +0,0 @@
-/*
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
- * All rights reserved.
- */
-
-#pragma once
-
-/** \file
- * \ingroup bli
- * \brief A structure to represent vector fonts,
- * and to load them from PostScript fonts.
- */
-
-#include "DNA_listBase.h"
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-struct PackedFile;
-struct VFont;
-
-typedef struct VFontData {
- struct GHash *characters;
- char name[128];
- float scale;
- /* Calculated from the font. */
- float em_height;
- float ascender;
-} VFontData;
-
-typedef struct VChar {
- ListBase nurbsbase;
- unsigned int index;
- float width;
-} VChar;
-
-VFontData *BLI_vfontdata_from_freetypefont(struct PackedFile *pf);
-VFontData *BLI_vfontdata_copy(const VFontData *vfont_src, const int flag);
-
-VChar *BLI_vfontchar_from_freetypefont(struct VFont *vfont, unsigned long character);
-VChar *BLI_vfontchar_copy(const VChar *vchar_src, const int flag);
-
-#ifdef __cplusplus
-}
-#endif