f93a897afe
* include/freetype/config/ftheader.h (FT_OTSVG_H): New macro. * include/freetype/freetype.h (FT_FACE_FLAG_SVG, FT_HAS_SVG): New macros. (FT_LOAD_SVG_ONLY): New internal macro. * include/freetype/ftimage.h (FT_Glyph_Format): New enumeration value `FT_GLYPH_FORMAT_SVG`. * include/freetype/internal/ftobjs.h (FT_GLYPH_OWN_GZIP_SVG): New macro. * include/freetype/internal/fttrace.h: Add `ttsvg` for `ttsvg.c`. * include/freetype/internal/sfnt.h(load_svg, free_svg, load_svg_doc): New functions. * include/freetype/internal/tttypes.h (TT_FaceRec): Add `svg` for the SVG table. * include/freetype/otsvg.h (FT_SVG_DocumentRec): New structure to hold the SVG document and other necessary information of an OT-SVG glyph in a glyph slot. * include/freetype/tttags.h (TTAG_SVG): New macro. * src/base/ftobjs.c: Include `otsvg.h`. (ft_glyphslot_init): Allocate `FT_SVG_DocumentRec` in `slot->other` if the SVG table exists. (ft_glyphslot_clear): Free it upon clean-up if it is a GZIP compressed glyph. (ft_glyphslot_done): Free the document data if it is a GZIP compressed glyph. (FT_Load_Glyph): Don't auto-hint SVG documents. * src/cache/ftcbasic.c (ftc_basic_family_load_glyph): Add support for FT_GLYPH_FORMAT_SVG. * src/sfnt/rules.mk (SFNT_DRV_SRC): Add `ttsvg.c`. * src/sfnt/sfdriver.c: Include `ttsvg.h`. (sfnt_interface): Add `tt_face_load_svg`, `tt_face_free_svg` and `tt_face_load_svg_doc`. * src/sfnt/sfnt.c: Include `ttsvg.c`. * src/sfnt/sfobjs.c (sfnt_load_face, sfnt_done_face): Add code to load and free data of the the SVG table. * src/sfnt/ttsvg.c: New file, implementing `tt_face_load_svg`, `tt_face_free_svg` and `tt_face_load_svg_doc`. * src/sfnt/ttsvg.h: Declarations of the SVG functions in `ttsvg.c`.
87 lines
2.3 KiB
Makefile
87 lines
2.3 KiB
Makefile
#
|
|
# FreeType 2 SFNT driver configuration rules
|
|
#
|
|
|
|
|
|
# Copyright (C) 1996-2022 by
|
|
# David Turner, Robert Wilhelm, and Werner Lemberg.
|
|
#
|
|
# This file is part of the FreeType project, and may only be used, modified,
|
|
# and distributed under the terms of the FreeType project license,
|
|
# LICENSE.TXT. By continuing to use, modify, or distribute this file you
|
|
# indicate that you have read the license and understand and accept it
|
|
# fully.
|
|
|
|
|
|
# SFNT driver directory
|
|
#
|
|
SFNT_DIR := $(SRC_DIR)/sfnt
|
|
|
|
|
|
# compilation flags for the driver
|
|
#
|
|
SFNT_COMPILE := $(CC) $(ANSIFLAGS) \
|
|
$I$(subst /,$(COMPILER_SEP),$(SFNT_DIR)) \
|
|
$(INCLUDE_FLAGS) \
|
|
$(FT_CFLAGS)
|
|
|
|
|
|
# SFNT driver sources (i.e., C files)
|
|
#
|
|
SFNT_DRV_SRC := $(SFNT_DIR)/pngshim.c \
|
|
$(SFNT_DIR)/sfdriver.c \
|
|
$(SFNT_DIR)/sfobjs.c \
|
|
$(SFNT_DIR)/sfwoff.c \
|
|
$(SFNT_DIR)/sfwoff2.c \
|
|
$(SFNT_DIR)/ttbdf.c \
|
|
$(SFNT_DIR)/ttcmap.c \
|
|
$(SFNT_DIR)/ttcolr.c \
|
|
$(SFNT_DIR)/ttsvg.c \
|
|
$(SFNT_DIR)/ttcpal.c \
|
|
$(SFNT_DIR)/ttkern.c \
|
|
$(SFNT_DIR)/ttload.c \
|
|
$(SFNT_DIR)/ttmtx.c \
|
|
$(SFNT_DIR)/ttpost.c \
|
|
$(SFNT_DIR)/ttsbit.c \
|
|
$(SFNT_DIR)/woff2tags.c
|
|
|
|
# SFNT driver headers
|
|
#
|
|
SFNT_DRV_H := $(SFNT_DRV_SRC:%c=%h) \
|
|
$(SFNT_DIR)/sferrors.h
|
|
|
|
|
|
# SFNT driver object(s)
|
|
#
|
|
# SFNT_DRV_OBJ_M is used during `multi' builds.
|
|
# SFNT_DRV_OBJ_S is used during `single' builds.
|
|
#
|
|
SFNT_DRV_OBJ_M := $(SFNT_DRV_SRC:$(SFNT_DIR)/%.c=$(OBJ_DIR)/%.$O)
|
|
SFNT_DRV_OBJ_S := $(OBJ_DIR)/sfnt.$O
|
|
|
|
# SFNT driver source file for single build
|
|
#
|
|
SFNT_DRV_SRC_S := $(SFNT_DIR)/sfnt.c
|
|
|
|
|
|
# SFNT driver - single object
|
|
#
|
|
$(SFNT_DRV_OBJ_S): $(SFNT_DRV_SRC_S) $(SFNT_DRV_SRC) \
|
|
$(FREETYPE_H) $(SFNT_DRV_H)
|
|
$(SFNT_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $(SFNT_DRV_SRC_S))
|
|
|
|
|
|
# SFNT driver - multiple objects
|
|
#
|
|
$(OBJ_DIR)/%.$O: $(SFNT_DIR)/%.c $(FREETYPE_H) $(SFNT_DRV_H)
|
|
$(SFNT_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<)
|
|
|
|
|
|
# update main driver object lists
|
|
#
|
|
DRV_OBJS_S += $(SFNT_DRV_OBJ_S)
|
|
DRV_OBJS_M += $(SFNT_DRV_OBJ_M)
|
|
|
|
|
|
# EOF
|