aboutsummaryrefslogtreecommitdiff
path: root/devel/lasi/files/patch-src_drawGlyph.cpp
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2007-07-02 12:12:16 +0000
committerMartin Wilke <miwi@FreeBSD.org>2007-07-02 12:12:16 +0000
commit1ed619a3d6fc0b2086db7e9e81fd3d2bdcef7317 (patch)
treed3359f9ae9440bbc76d0106a86a9f5f9cc53bdcb /devel/lasi/files/patch-src_drawGlyph.cpp
parentdf63713fe1b0295ec3d5f844be8f469af39ef102 (diff)
downloadports-1ed619a3d6fc0b2086db7e9e81fd3d2bdcef7317.tar.gz
ports-1ed619a3d6fc0b2086db7e9e81fd3d2bdcef7317.zip
- Update to .1.0.6
- Pass maintainership to submitter PR: 114152 Submitted by: Lars Engels <lars.engels@0x20.net>
Notes
Notes: svn path=/head/; revision=194646
Diffstat (limited to 'devel/lasi/files/patch-src_drawGlyph.cpp')
-rw-r--r--devel/lasi/files/patch-src_drawGlyph.cpp34
1 files changed, 0 insertions, 34 deletions
diff --git a/devel/lasi/files/patch-src_drawGlyph.cpp b/devel/lasi/files/patch-src_drawGlyph.cpp
deleted file mode 100644
index 18338e6e1dda..000000000000
--- a/devel/lasi/files/patch-src_drawGlyph.cpp
+++ /dev/null
@@ -1,34 +0,0 @@
---- src/drawGlyph.cpp.orig Wed Oct 4 16:21:41 2006
-+++ src/drawGlyph.cpp Wed Oct 4 16:23:29 2006
-@@ -81,7 +81,7 @@
- return 0;
- }
-
--static int moveTo(FT_Vector* pftVec, void* data) {
-+static int moveTo(const FT_Vector* pftVec, void* data) {
- StateOfDrawGlyph* const state = reinterpret_cast<StateOfDrawGlyph* const>(data);
- state->os() << (state->isNewPath() ? "newpath" : "closepath") << endl;
- state->setNewPathFalse();
-@@ -89,19 +89,19 @@
- return 0;
- }
-
--static int lineTo(FT_Vector* pftVec, void* data) {
-+static int lineTo(const FT_Vector* pftVec, void* data) {
- xTo(pftVec, data, "lineto");
- return 0;
- }
-
--static int cubicTo(FT_Vector* ctrlPt1, FT_Vector* ctrlPt2, FT_Vector* pEndPt, void* data) {
-+static int cubicTo(const FT_Vector* ctrlPt1, const FT_Vector* ctrlPt2, const FT_Vector* pEndPt, void* data) {
- StateOfDrawGlyph* const state = reinterpret_cast<StateOfDrawGlyph* const>(data);
- state->os() << *ctrlPt1 << " " << *ctrlPt2 << " " << *pEndPt << " curveto" << endl;
- state->setStartPt(*pEndPt);
- return 0;
- }
-
--static int conicTo(FT_Vector* pCtrlPt, FT_Vector* pEndPt, void* data) {
-+static int conicTo(const FT_Vector* pCtrlPt, const FT_Vector* pEndPt, void* data) {
- StateOfDrawGlyph* const state = reinterpret_cast<StateOfDrawGlyph* const>(data);
- FT_Vector ctrlPt1 = (state->startPt() + 2 * *pCtrlPt) / 3;
- FT_Vector ctrlPt2 = (*pEndPt + 2 * *pCtrlPt) / 3;