Behdad Esfahbod
d05d083e9f
[GX] Improve weight mapping
...
Align the 'wght' axis default value to OS/2 weight value and
adjust accordingly. This makes both default=1.0 and default=400
models to work.
2016-03-08 17:20:55 -08:00
Behdad Esfahbod
d709220d74
Improve OpenType to Fontconfig weight mapping
2016-03-08 17:20:28 -08:00
Behdad Esfahbod
27d61f1ddc
[GX] Enumerate all named-instances in TrueType GX fonts
2016-03-08 13:39:05 -08:00
Behdad Esfahbod
00c8408c6a
[GX] Support instance weight, width, and style name
2016-03-08 13:39:05 -08:00
Behdad Esfahbod
28f62d1bb8
Call FcFreeTypeQueryFace() from fcdir.c, instead of FcFreeTypeQuery()
...
Need for upcoming work. No functional change expected.
2016-03-08 13:39:05 -08:00
Patrick Haller
d570a841a2
Optimizations in FcStrSet
...
Applied optimizations:
- skip duplicate check in FcStrSetAppend for values originating from readdir()
- grow FcStrSet in 64-element bulks for local FcStrSets (FcConfig layout unaltered)
Starting gedit is measured to
Unoptimized Optimized
user[s] 0,806 0,579
sys[s] 0,062 0,062
Total Instr Fetch Cost: 1.658.683.750 895.069.820
Cachegrind D Refs: 513.917.619 312.000.436
Cachegrind Dl Misses: 8.605.632 4.954.639
2016-01-12 10:42:40 +09:00
Akira TAGOH
98434b3392
Add hintstyle templates and make hintslight default
2015-12-02 11:31:50 +09:00
Akira TAGOH
04763135d4
Avoid an error message on testing when no fonts.conf installed
...
This test case doesn't require any config files so no need to ensure loading them.
2015-11-25 11:58:14 +09:00
Akira TAGOH
5886d98c36
Bug 93075 - Possible fix for make check failure on msys/MinGW...
...
Patch from Christian Fafard
2015-11-24 10:46:34 +09:00
Akira TAGOH
1d87fab8b1
remomve unnecessary code
2015-11-18 14:44:17 +09:00
Akira TAGOH
d162a4a83d
Fix assertion on 32bit arch
2015-10-16 17:24:22 +09:00
Akira TAGOH
6d6ce028ee
Fix compiler warnings on MinGW
2015-10-15 15:53:27 +09:00
Akira TAGOH
bd96984e4b
Use int64_t instead of long long
2015-10-15 15:51:50 +09:00
Akira TAGOH
7ccde89758
Fix build issue on MinGW
2015-10-13 13:06:54 +09:00
Akira TAGOH
a44cc450b5
Use long long to see the same size between LP64 and LLP64
2015-10-13 13:04:33 +09:00
Akira TAGOH
c88d9b6242
Fail on make runtime as needed instead of configure if no python installed
...
python isn't necessarily required to build fontconfig from tarball so that
generated fcblanks.h is available in tarball.
https://bugs.freedesktop.org/show_bug.cgi?id=91663
2015-08-17 16:37:23 +09:00
Akira TAGOH
ad9f588050
Fix the broken cache more.
...
Take a look at the nano second in the mtime to figure out
if the cache needs to be updated if available.
and do the mutex lock between scanning and writing a cache
to avoid the conflict.
Also we don't need to scan directories again after writing
caches. so getting rid of the related code as well.
https://bugs.freedesktop.org/show_bug.cgi?id=69845
and for reference:
https://bugzilla.redhat.com/show_bug.cgi?id=1236034
2015-08-14 17:19:29 +09:00
Behdad Esfahbod
46ec6a52d4
Revert changes made to FcConfigAppFontAddDir() recently
...
In 32ac7c75e8
the behavior of
FcConfigAppFontAddFile/Dir() were changed to return false
if not fonts were found. While this is welldefined and useful
for AddFile(), it's quite problematic for AddDir(). For example,
if the directory is empty, is that a failure or success? Worse,
the false value from AddDir() was being propagated all the way
to FcInit() returning false now. This only happened upon memory
allocation failure before, and some clients assert that FcInit()
is successful.
With this change, AddDir() is reverted back to what it was.
AddFont() change (which was actually in fcdir.c) from the original
commit is left in.
2015-06-26 17:02:13 -07:00
Akira TAGOH
a8096dfa59
Bug 90867 - Memory Leak during error case in fccharset
...
https://bugs.freedesktop.org/show_bug.cgi?id=90867
2015-06-24 15:46:45 +09:00
Akira TAGOH
0551e1b344
Update CaseFolding.txt to Unicode 8.0
2015-06-18 17:25:02 +09:00
Akira TAGOH
6f929ff37c
Fix a memory leak in FcFreeTypeQueryFace
2015-06-17 16:34:29 +09:00
Akira TAGOH
46b2c62faa
Add a warning for blank in fonts.conf
...
and remove the unnecessary code for parsing blanks
2015-06-17 16:29:08 +09:00
Akira TAGOH
33fd436a3e
Don't return FcFalse even when no fonts dirs is configured
2015-06-17 16:15:35 +09:00
Akira TAGOH
f6d61c9bee
mark as private at this moment
2015-06-12 11:30:01 +09:00
Akira TAGOH
dbda117142
No need to be public
2015-06-09 11:15:25 +09:00
Akira TAGOH
359ada2b4c
Fix a crash when no objects are available after filtering
2015-06-09 11:15:06 +09:00
Akira TAGOH
10a57edd07
Add one more debugging option to see transformation on font-matching
...
just setting FC_MATCH=3 shows a lot of information and hard to keep on track for informamtion
which is really necessary to see. to use this more effectively, added FC_DBG_MATCH_FILTER to
see for what one really want to see. it takes a comma-separated-list of object names.
If you want to see family name only, try like this:
FC_DBG_MATCH_FILTER=family FC_DEBUG=4096 fc-match
debugging output will be filtered out and see family only in the result.
2015-06-08 17:39:25 +09:00
Akira TAGOH
1827ef7b1e
Bump version to 2.11.94
2015-06-02 17:33:03 +09:00
Behdad Esfahbod
481a9f03a0
Bump cache version number to 6, because of recent FcRange changes
2015-05-27 14:40:15 -07:00
Behdad Esfahbod
ee2d1da2d2
Reduce number of places that cache version is specified to 1
2015-05-27 14:36:35 -07:00
Behdad Esfahbod
5bad26ccb6
Simplify FcRange
2015-05-27 14:18:28 -07:00
Behdad Esfahbod
13a5ae9fb9
Fix compiler warnings
2015-05-27 14:12:49 -07:00
Behdad Esfahbod
346073d9dc
Don't set FC_SIZE for bitmap fonts
...
They get FC_PIXELSIZE set, which is later converted to FC_SIZE using
FC_DPI.
2015-05-27 14:12:49 -07:00
Behdad Esfahbod
eba6f109de
Accept Integer for FC_SIZE
...
There are more places to fix I'm sure...
https://bugs.freedesktop.org/show_bug.cgi?id=80873
2015-05-27 14:12:49 -07:00
Behdad Esfahbod
cb2f096e15
Add bitmap-only font size as Double, not Range
...
The whole size setting part still smells to me.
2015-05-27 14:12:49 -07:00
Behdad Esfahbod
51756aab18
Only set FC_SIZE for scalable fonts if OS/2 version 5 is present
...
Part of https://bugs.freedesktop.org/show_bug.cgi?id=80873
2015-05-27 14:12:49 -07:00
Behdad Esfahbod
d09ba38589
Write ranges using a [start finish) format
...
To show closed and open ends.
2015-05-27 14:12:49 -07:00
Akira TAGOH
4c9101f704
Revert the previous change
...
and just abort if the object id is overflowed.
2015-05-25 21:41:05 +09:00
Akira TAGOH
09edd84cf8
Detect the overflow for the object ID
...
Continue to increase the object id even after FcFini()
and detect the overflow. that would be rather easier than
reset the object id with the complicated mutex and atomic
functions.
This situation would be quite unlikely to happen though
2015-05-22 20:51:21 +09:00
Akira TAGOH
f053231186
Fix a crash
...
segfault happens when the config needs to be migrated to XDG's
and no definition for include with prefix="xdg"
2015-05-22 20:46:54 +09:00
Akira TAGOH
249306fbd7
Fix a typo
2015-05-22 20:45:05 +09:00
Akira TAGOH
fa6c6b53c5
Fix memory leaks after FcFini()
...
Reported by Jia Wang
https://bugs.freedesktop.org/show_bug.cgi?id=83770
2015-05-22 16:53:34 +09:00
Behdad Esfahbod
bcfe167e3d
Add su[pport for symbol fonts
...
Adds FC_SYMBOL.
This affects fonts having a cmap with platform 3 encoding 0.
We now map their glyphs from the PUA area to the Latin1 area.
See thread "Webdings and other MS symbol fonts don't display"
on the mailing list.
Test before/after with:
$ pango-view --markup --text='<span fallback="false">×</span>' --font=Wingdings
2015-05-18 15:26:03 -07:00
Akira TAGOH
ead7275e05
Bug 90148 - Don't warn if cachedir isn't specified
...
only warn when FONTCONFIG_FILE or FONTCONFIG_PATH is set.
Bug 90148 - Don't warn if cachedir isn't specified
2015-05-18 14:03:50 +09:00
Akira TAGOH
55ff841927
Make FC_SCALE deprecated
...
Use FC_MATRIX instead.
https://bugs.freedesktop.org/show_bug.cgi?id=90257
2015-05-12 14:49:12 +09:00
Akira TAGOH
a10cb2e4d7
Add missing description for usage
2015-05-12 14:28:45 +09:00
Akira TAGOH
4c040d393d
Observe blanks to compute correct languages in fc-query/fc-scan
...
Added --ignore-blanks option to get back the behavior.
https://bugs.freedesktop.org/show_bug.cgi?id=79955
2015-05-11 11:02:59 +09:00
Behdad Esfahbod
4a6f5efd5f
Fix bitmap scaling
...
Was broken by 66db69a6d9
. Ouch!
2015-04-30 11:26:41 -04:00
Akira TAGOH
3a4136778c
Drop unmaintained code
...
Use four-byte code for foundry as is instead.
https://bugs.freedesktop.org/show_bug.cgi?id=88679
2015-04-22 16:29:25 +09:00
Akira TAGOH
b3fc08bc95
Fix a typo in fontconfig-user.sgml
...
https://bugs.freedesktop.org/show_bug.cgi?id=90105
2015-04-22 11:17:04 +09:00