/**************************************************************************** * * svgtypes.h * * TODO: * The FreeType svg renderer internal types (specification). * * Copyright (C) 1996-2019 by * David Turner, Robert Wilhelm, Werner Lemberg and Moazin Khatti. * * 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. * */ #include #include FT_INTERNAL_OBJECTS_H #include FT_RENDER_H #include FT_SVG_RENDER_H typedef struct SVG_RendererRec_ { FT_RendererRec root; /* This inherits FT_RendererRec */ FT_Bool loaded; SVG_RendererHooks hooks; /* Holds out hooks to the outside library */ } SVG_RendererRec; typedef struct SVG_RendererRec_* SVG_Renderer;