diff options
author | Karl Berry <karl@freefriends.org> | 2017-01-31 18:37:40 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2017-01-31 18:37:40 +0000 |
commit | 4c245316c293169ee655c8e2f922b4bee454f9bc (patch) | |
tree | 2d3b72165f3e7e1298df8dad8b52f119a42228dc /Build/source/texk/dvisvgm/dvisvgm-src/src/SVGCharPathHandler.cpp | |
parent | 54a2f67f996dceca3c89276dea798f746b3cacaf (diff) |
import original dvisvgm-2.1
git-svn-id: svn://tug.org/texlive/trunk@43102 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/dvisvgm/dvisvgm-src/src/SVGCharPathHandler.cpp')
-rw-r--r-- | Build/source/texk/dvisvgm/dvisvgm-src/src/SVGCharPathHandler.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Build/source/texk/dvisvgm/dvisvgm-src/src/SVGCharPathHandler.cpp b/Build/source/texk/dvisvgm/dvisvgm-src/src/SVGCharPathHandler.cpp index 5793cf389bc..db6c2aba999 100644 --- a/Build/source/texk/dvisvgm/dvisvgm-src/src/SVGCharPathHandler.cpp +++ b/Build/source/texk/dvisvgm/dvisvgm-src/src/SVGCharPathHandler.cpp @@ -2,7 +2,7 @@ ** SVGCharPathHandler.cpp ** ** ** ** This file is part of dvisvgm -- a fast DVI to SVG converter ** -** Copyright (C) 2005-2016 Martin Gieseking <martin.gieseking@uos.de> ** +** Copyright (C) 2005-2017 Martin Gieseking <martin.gieseking@uos.de> ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** @@ -19,10 +19,10 @@ *************************************************************************/ #include <sstream> -#include "Font.h" -#include "FontManager.h" -#include "SVGCharPathHandler.h" -#include "XMLNode.h" +#include "Font.hpp" +#include "FontManager.hpp" +#include "SVGCharPathHandler.hpp" +#include "XMLNode.hpp" using namespace std; @@ -49,7 +49,7 @@ void SVGCharPathHandler::resetContextNode () { * @param[in] c code of the character to be appended * @param[in] x horizontal position of the character (in bp units) * @param[in] y vertical position of the character (in bp units) */ -void SVGCharPathHandler::appendChar (UInt32 c, double x, double y) { +void SVGCharPathHandler::appendChar (uint32_t c, double x, double y) { if (_font.changed()) { _fontColor.set(_font.get()->color()); if (_fontColor.changed() && _fontColor.get() != Color::BLACK) @@ -107,7 +107,7 @@ void SVGCharPathHandler::appendChar (UInt32 c, double x, double y) { } -void SVGCharPathHandler::appendUseElement (UInt32 c, double x, double y, const Matrix &matrix) { +void SVGCharPathHandler::appendUseElement (uint32_t c, double x, double y, const Matrix &matrix) { ostringstream oss; oss << "#g" << FontManager::instance().fontID(_font) << '-' << c; XMLElementNode *useNode = new XMLElementNode("use"); @@ -120,7 +120,7 @@ void SVGCharPathHandler::appendUseElement (UInt32 c, double x, double y, const M } -void SVGCharPathHandler::appendPathElement (UInt32 c, double x, double y, const Matrix &matrix) { +void SVGCharPathHandler::appendPathElement (uint32_t c, double x, double y, const Matrix &matrix) { Glyph glyph; const PhysicalFont *pf = dynamic_cast<const PhysicalFont*>(_font.get()); if (pf && pf->getGlyph(c, glyph)) { |