cairo 1.15.13-x86-mingw32 → 1.15.14-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/NEWS +24 -0
- data/README.rdoc +11 -40
- data/Rakefile +4 -2
- data/ext/cairo/rb_cairo.h +1 -1
- data/ext/cairo/rb_cairo_context.c +35 -3
- data/ext/cairo/rb_cairo_font_options.c +5 -6
- data/ext/cairo/rb_cairo_private.h +2 -2
- data/ext/cairo/rb_cairo_scaled_font.c +11 -2
- data/ext/cairo/rb_cairo_surface.c +89 -48
- data/lib/2.2/cairo.so +0 -0
- data/lib/2.3/cairo.so +0 -0
- data/lib/2.4/cairo.so +0 -0
- data/lib/2.5/cairo.so +0 -0
- data/test/{cairo-test-utils.rb → helper.rb} +4 -5
- data/test/run-test.rb +3 -10
- data/test/test_context.rb +6 -6
- data/test/test_font_extents.rb +1 -1
- data/test/test_font_face.rb +1 -1
- data/test/test_font_options.rb +1 -1
- data/test/test_image_surface.rb +2 -2
- data/test/test_pdf_surface.rb +1 -1
- data/test/test_quartz_image_surface.rb +1 -1
- data/test/test_raster_source_pattern.rb +13 -13
- data/test/test_recording_surface.rb +2 -2
- data/test/test_region.rb +1 -1
- data/test/test_scaled_font.rb +1 -1
- data/test/test_script_device.rb +1 -1
- data/test/test_script_surface.rb +1 -1
- data/test/test_surface.rb +5 -5
- data/test/test_svg_surface.rb +1 -1
- data/test/test_tee_surface.rb +2 -2
- data/test/test_text_cluster.rb +1 -1
- data/test/test_text_extents.rb +1 -1
- data/test/test_text_to_glyphs_data.rb +1 -1
- data/test/test_xml_device.rb +1 -1
- data/test/test_xml_surface.rb +2 -2
- data/vendor/local/bin/fc-cache.exe +0 -0
- data/vendor/local/bin/fc-cat.exe +0 -0
- data/vendor/local/bin/fc-conflist.exe +0 -0
- data/vendor/local/bin/fc-list.exe +0 -0
- data/vendor/local/bin/fc-match.exe +0 -0
- data/vendor/local/bin/fc-pattern.exe +0 -0
- data/vendor/local/bin/fc-query.exe +0 -0
- data/vendor/local/bin/fc-scan.exe +0 -0
- data/vendor/local/bin/fc-validate.exe +0 -0
- data/vendor/local/bin/libcairo-2.dll +0 -0
- data/vendor/local/bin/libcairo-gobject-2.dll +0 -0
- data/vendor/local/bin/libcairo-script-interpreter-2.dll +0 -0
- data/vendor/local/bin/libfontconfig-1.dll +0 -0
- data/vendor/local/bin/libfreetype-6.dll +0 -0
- data/vendor/local/bin/libpixman-1-0.dll +0 -0
- data/vendor/local/bin/libpng-config +1 -1
- data/vendor/local/bin/libpng16-16.dll +0 -0
- data/vendor/local/bin/libpng16-config +1 -1
- data/vendor/local/bin/libxml2-2.dll +0 -0
- data/vendor/local/bin/png-fix-itxt.exe +0 -0
- data/vendor/local/bin/pngfix.exe +0 -0
- data/vendor/local/bin/xmlcatalog.exe +0 -0
- data/vendor/local/bin/xmllint.exe +0 -0
- data/vendor/local/bin/zlib1211.dll +0 -0
- data/vendor/local/include/freetype2/freetype/config/ftconfig.h +82 -3
- data/vendor/local/include/freetype2/freetype/config/ftheader.h +43 -85
- data/vendor/local/include/freetype2/freetype/config/ftoption.h +43 -56
- data/vendor/local/include/freetype2/freetype/config/ftstdlib.h +1 -1
- data/vendor/local/include/freetype2/freetype/freetype.h +185 -85
- data/vendor/local/include/freetype2/freetype/ftadvanc.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftbbox.h +2 -2
- data/vendor/local/include/freetype2/freetype/ftbdf.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftbitmap.h +2 -2
- data/vendor/local/include/freetype2/freetype/ftbzip2.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftcache.h +1 -16
- data/vendor/local/include/freetype2/freetype/ftchapters.h +3 -0
- data/vendor/local/include/freetype2/freetype/ftcid.h +2 -2
- data/vendor/local/include/freetype2/freetype/ftdriver.h +1225 -0
- data/vendor/local/include/freetype2/freetype/fterrdef.h +1 -1
- data/vendor/local/include/freetype2/freetype/fterrors.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftfntfmt.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftgasp.h +6 -1
- data/vendor/local/include/freetype2/freetype/ftglyph.h +3 -3
- data/vendor/local/include/freetype2/freetype/ftgxval.h +5 -5
- data/vendor/local/include/freetype2/freetype/ftgzip.h +4 -1
- data/vendor/local/include/freetype2/freetype/ftimage.h +18 -18
- data/vendor/local/include/freetype2/freetype/ftincrem.h +2 -13
- data/vendor/local/include/freetype2/freetype/ftlcdfil.h +5 -18
- data/vendor/local/include/freetype2/freetype/ftlist.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftlzw.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftmac.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftmm.h +99 -11
- data/vendor/local/include/freetype2/freetype/ftmodapi.h +12 -11
- data/vendor/local/include/freetype2/freetype/ftmoderr.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftotval.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftoutln.h +4 -7
- data/vendor/local/include/freetype2/freetype/ftparams.h +205 -0
- data/vendor/local/include/freetype2/freetype/ftpfr.h +4 -4
- data/vendor/local/include/freetype2/freetype/ftrender.h +2 -2
- data/vendor/local/include/freetype2/freetype/ftsizes.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftsnames.h +8 -42
- data/vendor/local/include/freetype2/freetype/ftstroke.h +6 -6
- data/vendor/local/include/freetype2/freetype/ftsynth.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftsystem.h +1 -1
- data/vendor/local/include/freetype2/freetype/fttrigon.h +1 -1
- data/vendor/local/include/freetype2/freetype/fttypes.h +2 -2
- data/vendor/local/include/freetype2/freetype/ftwinfnt.h +2 -2
- data/vendor/local/include/freetype2/freetype/t1tables.h +10 -1
- data/vendor/local/include/freetype2/freetype/ttnameid.h +2 -2
- data/vendor/local/include/freetype2/freetype/tttables.h +1 -1
- data/vendor/local/include/freetype2/freetype/tttags.h +1 -1
- data/vendor/local/include/freetype2/ft2build.h +1 -1
- data/vendor/local/include/libpng16/png.h +40 -40
- data/vendor/local/include/libpng16/pngconf.h +15 -14
- data/vendor/local/include/libpng16/pnglibconf.h +1 -1
- data/vendor/local/include/png.h +40 -40
- data/vendor/local/include/pngconf.h +15 -14
- data/vendor/local/include/pnglibconf.h +1 -1
- data/vendor/local/lib/libcairo-gobject.dll.a +0 -0
- data/vendor/local/lib/libcairo-gobject.la +1 -1
- data/vendor/local/lib/libcairo-script-interpreter.a +0 -0
- data/vendor/local/lib/libcairo-script-interpreter.dll.a +0 -0
- data/vendor/local/lib/libcairo.a +0 -0
- data/vendor/local/lib/libcairo.dll.a +0 -0
- data/vendor/local/lib/libfontconfig.dll.a +0 -0
- data/vendor/local/lib/libfreetype.a +0 -0
- data/vendor/local/lib/libfreetype.dll.a +0 -0
- data/vendor/local/lib/libfreetype.la +3 -3
- data/vendor/local/lib/libpixman-1.dll.a +0 -0
- data/vendor/local/lib/libpng.a +0 -0
- data/vendor/local/lib/libpng.dll.a +0 -0
- data/vendor/local/lib/libpng.la +2 -2
- data/vendor/local/lib/libpng16.a +0 -0
- data/vendor/local/lib/libpng16.dll.a +0 -0
- data/vendor/local/lib/libpng16.la +2 -2
- data/vendor/local/lib/libxml2.dll.a +0 -0
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/freetype2.pc +2 -2
- data/vendor/local/lib/pkgconfig/libpng.pc +1 -1
- data/vendor/local/lib/pkgconfig/libpng16.pc +1 -1
- data/vendor/local/share/aclocal/freetype2.m4 +1 -1
- data/vendor/local/share/license/freetype/README +9 -9
- data/vendor/local/share/license/freetype/README.git +1 -1
- data/vendor/local/share/license/libpng/README +2 -2
- data/vendor/local/share/man/man3/libpng.3 +50 -54
- data/vendor/local/share/man/man3/libpngpf.3 +8 -4
- metadata +9 -14
- data/vendor/local/bin/freetype-config +0 -211
- data/vendor/local/include/freetype2/freetype/ftautoh.h +0 -533
- data/vendor/local/include/freetype2/freetype/ftcffdrv.h +0 -321
- data/vendor/local/include/freetype2/freetype/ftpcfdrv.h +0 -105
- data/vendor/local/include/freetype2/freetype/ftttdrv.h +0 -328
- data/vendor/local/include/freetype2/freetype/ttunpat.h +0 -63
- data/vendor/local/share/man/man1/freetype-config.1 +0 -146
@@ -1,63 +0,0 @@
|
|
1
|
-
/***************************************************************************/
|
2
|
-
/* */
|
3
|
-
/* ttunpat.h */
|
4
|
-
/* */
|
5
|
-
/* Definitions for the unpatented TrueType hinting system. */
|
6
|
-
/* Obsolete, retained for backward compatibility. */
|
7
|
-
/* */
|
8
|
-
/* Copyright 2003-2017 by */
|
9
|
-
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
10
|
-
/* */
|
11
|
-
/* Written by Graham Asher <graham.asher@btinternet.com> */
|
12
|
-
/* */
|
13
|
-
/* This file is part of the FreeType project, and may only be used, */
|
14
|
-
/* modified, and distributed under the terms of the FreeType project */
|
15
|
-
/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
|
16
|
-
/* this file you indicate that you have read the license and */
|
17
|
-
/* understand and accept it fully. */
|
18
|
-
/* */
|
19
|
-
/***************************************************************************/
|
20
|
-
|
21
|
-
|
22
|
-
#ifndef TTUNPAT_H_
|
23
|
-
#define TTUNPAT_H_
|
24
|
-
|
25
|
-
|
26
|
-
#include <ft2build.h>
|
27
|
-
#include FT_FREETYPE_H
|
28
|
-
|
29
|
-
#ifdef FREETYPE_H
|
30
|
-
#error "freetype.h of FreeType 1 has been loaded!"
|
31
|
-
#error "Please fix the directory search order for header files"
|
32
|
-
#error "so that freetype.h of FreeType 2 is found first."
|
33
|
-
#endif
|
34
|
-
|
35
|
-
|
36
|
-
FT_BEGIN_HEADER
|
37
|
-
|
38
|
-
|
39
|
-
/***************************************************************************
|
40
|
-
*
|
41
|
-
* @constant:
|
42
|
-
* FT_PARAM_TAG_UNPATENTED_HINTING
|
43
|
-
*
|
44
|
-
* @description:
|
45
|
-
* Deprecated.
|
46
|
-
*
|
47
|
-
* Previously: A constant used as the tag of an @FT_Parameter structure to
|
48
|
-
* indicate that unpatented methods only should be used by the TrueType
|
49
|
-
* bytecode interpreter for a typeface opened by @FT_Open_Face.
|
50
|
-
*
|
51
|
-
*/
|
52
|
-
#define FT_PARAM_TAG_UNPATENTED_HINTING FT_MAKE_TAG( 'u', 'n', 'p', 'a' )
|
53
|
-
|
54
|
-
/* */
|
55
|
-
|
56
|
-
|
57
|
-
FT_END_HEADER
|
58
|
-
|
59
|
-
|
60
|
-
#endif /* TTUNPAT_H_ */
|
61
|
-
|
62
|
-
|
63
|
-
/* END */
|
@@ -1,146 +0,0 @@
|
|
1
|
-
.TH FREETYPE-CONFIG 1 "September 2017" "FreeType 2.8.1"
|
2
|
-
.
|
3
|
-
.
|
4
|
-
.SH NAME
|
5
|
-
.
|
6
|
-
freetype-config \- Get information about a libfreetype installation
|
7
|
-
.
|
8
|
-
.
|
9
|
-
.SH SYNOPSIS
|
10
|
-
.
|
11
|
-
.B freetype-config
|
12
|
-
.RI [ options ]
|
13
|
-
.
|
14
|
-
.
|
15
|
-
.SH DESCRIPTION
|
16
|
-
.
|
17
|
-
.B freetype-config
|
18
|
-
returns information needed for compiling and linking programs with the
|
19
|
-
FreeType library, such as linker flags and compilation parameters.
|
20
|
-
.
|
21
|
-
Alternatively, it can be used to query information about the
|
22
|
-
FreeType library version installed on the system, such as the
|
23
|
-
installation (directory path) prefix or the FreeType version number.
|
24
|
-
.
|
25
|
-
.PP
|
26
|
-
If
|
27
|
-
.BR pkg-config (1)
|
28
|
-
is found in the path,
|
29
|
-
.B freetype-config
|
30
|
-
acts as a wrapper for
|
31
|
-
.BR pkg-config .
|
32
|
-
.
|
33
|
-
.PP
|
34
|
-
This program is part of the FreeType package.
|
35
|
-
.
|
36
|
-
.
|
37
|
-
.SH OPTIONS
|
38
|
-
.
|
39
|
-
There are two types of options: output/display selection options, and
|
40
|
-
path override options.
|
41
|
-
.
|
42
|
-
.
|
43
|
-
.SS Output selection options
|
44
|
-
.
|
45
|
-
Only one of the output selection options should be given at each program
|
46
|
-
invocation.
|
47
|
-
.
|
48
|
-
.TP
|
49
|
-
.B \-\-prefix
|
50
|
-
Return the prefix value of the installed FreeType library (the default
|
51
|
-
prefix will be `/usr' in most cases for distribution-installed
|
52
|
-
packages).
|
53
|
-
.
|
54
|
-
.TP
|
55
|
-
.B \-\-exec-prefix
|
56
|
-
Return the executable prefix value of the installed FreeType library
|
57
|
-
(will often be the same as the prefix value).
|
58
|
-
.
|
59
|
-
.TP
|
60
|
-
.B \-\-ftversion
|
61
|
-
Return the FreeType version number, directly derived from file
|
62
|
-
`freetype.h'.
|
63
|
-
.
|
64
|
-
.TP
|
65
|
-
.B \-\-version
|
66
|
-
Return the `libtool version' of the FreeType library.
|
67
|
-
.
|
68
|
-
.TP
|
69
|
-
.B \-\-libtool
|
70
|
-
Return the library name for linking with libtool.
|
71
|
-
.
|
72
|
-
.TP
|
73
|
-
.B \-\-libs
|
74
|
-
Return compiler flags for linking with the installed FreeType library.
|
75
|
-
.
|
76
|
-
.TP
|
77
|
-
.B \-\-cflags
|
78
|
-
Return compiler flags for compiling against the installed FreeType library.
|
79
|
-
.
|
80
|
-
.TP
|
81
|
-
.B \-\-static
|
82
|
-
Make command line options display flags for static linking.
|
83
|
-
.
|
84
|
-
.TP
|
85
|
-
.B \-\-help
|
86
|
-
Show help and exit.
|
87
|
-
.
|
88
|
-
.
|
89
|
-
.SS Path override options
|
90
|
-
.
|
91
|
-
These affect any selected output option, except the libtool version
|
92
|
-
returned by
|
93
|
-
.BR \-\-version .
|
94
|
-
.
|
95
|
-
.TP
|
96
|
-
.BI \-\-prefix= PREFIX
|
97
|
-
Override
|
98
|
-
.B \-\-prefix
|
99
|
-
value with
|
100
|
-
.IR PREFIX .
|
101
|
-
.
|
102
|
-
This also sets
|
103
|
-
.BI \-\-exec-prefix= PREFIX
|
104
|
-
if option
|
105
|
-
.B \-\-exec-prefix
|
106
|
-
is not explicitly given.
|
107
|
-
.
|
108
|
-
.TP
|
109
|
-
.BI \-\-exec-prefix= EPREFIX
|
110
|
-
Override
|
111
|
-
.B \-\-exec-prefix
|
112
|
-
value with
|
113
|
-
.IR EPREFIX .
|
114
|
-
.
|
115
|
-
.
|
116
|
-
.SH BUGS
|
117
|
-
In case the libraries FreeType links to are located in non-standard
|
118
|
-
directories, and
|
119
|
-
.BR pkg-config (1)
|
120
|
-
is not available, the output from option
|
121
|
-
.B \-\-libs
|
122
|
-
might be incomplete.
|
123
|
-
.
|
124
|
-
It is thus recommended to use the
|
125
|
-
.BR pkg-config (1)
|
126
|
-
interface instead, which is able to correctly resolve all dependencies.
|
127
|
-
.
|
128
|
-
.PP
|
129
|
-
Setting
|
130
|
-
.B \-\-exec-prefix
|
131
|
-
(either explicitly or implicitly) might return incorrect results if
|
132
|
-
combined with option
|
133
|
-
.BR \-\-static .
|
134
|
-
.
|
135
|
-
The same problem can occur if you set the
|
136
|
-
.B SYSROOT
|
137
|
-
environment variable.
|
138
|
-
.
|
139
|
-
.
|
140
|
-
.SH AUTHOR
|
141
|
-
.
|
142
|
-
This manual page was contributed by Nis Martensen <nis.martensen@web.de>,
|
143
|
-
with further refinements from the FreeType team.
|
144
|
-
.
|
145
|
-
.
|
146
|
-
.\" eof
|