Daniel Holbert
|
2caf7e05de
|
Bug 832440: Fix inconsistency on appUnitsPerDevPixels's signedness in gfxFont and its clients by converting all instances to be signed. r=jfkthame
|
2013-01-28 11:01:59 -08:00 |
Mats Palmgren
|
b7ae90666d
|
Bug 786533 - Replace NS_MIN/NS_MAX with std::min/std::max and #include <algorithm> where needed. r=ehsan
|
2013-01-15 13:22:03 +01:00 |
Cameron McCormack
|
bc2d799592
|
Bug 828805 - Implement SVG paint-order property. r=bz,roc
|
2013-01-13 10:27:53 +11:00 |
Jonathan Kew
|
dc68a4ac60
|
bug 825875 - shape long words directly into the textrun instead of using word caching. r=roc
|
2013-01-04 18:35:37 +00:00 |
Jonathan Kew
|
32fd2a26de
|
bug 825871 - refactor gfxTextRun and gfxShapedWord to share a common abstract base class (gfxShapedText) and shaping interface. r=roc
|
2013-01-04 18:35:37 +00:00 |
Jonathan Kew
|
b366d014bc
|
bug 826288 - remove the obsolete aFamily parameter from gfxFontEntry constructor. r=roc
|
2013-01-04 14:01:44 +00:00 |
Jonathan Kew
|
a03d1dc724
|
bug 821442 - eliminate the unreliable mFamily back-pointer in gfxFontEntry, and instead pass/track font family explicitly where needed. r=roc
|
2012-12-19 09:42:25 +00:00 |
Jonathan Kew
|
5ed0d42bd7
|
bug 820707 - consistently set familyHasItalic flag on GDI font entries, to avoid referring back to the family during font instantiation. r=roc
|
2012-12-12 14:09:50 +00:00 |
Brendan Dahl
|
e3eb98c915
|
Bug 791466 - Fix direct write cairo scaled font. r=Bas
|
2012-11-12 11:35:49 -08:00 |
Mats Palmgren
|
4c765506a6
|
Bug 798853, gfx. r=roc
|
2012-10-22 15:53:31 +02:00 |
Ms2ger
|
fc5a75281c
|
Bug 793314 - Remove PtrBits; r=mounir,roc
|
2012-10-02 10:24:11 +02:00 |
Masayuki Nakano
|
4fe6aca97c
|
Bug 791953 Fix lossy conversion warning in gfxFont.h r=jfkthame
|
2012-10-01 19:32:31 +09:00 |
Ehsan Akhgari
|
f603b68908
|
Bug 793408 - Remove some prtypes.h #includes from gfx; r=jrmuizel
|
2012-09-28 14:56:27 -04:00 |
Isaac Aggrey
|
481e7dfb0b
|
Bug 791906: Replace NSPR integer limit constants with stdint ones; r=ehsan
|
2012-09-28 01:57:33 -05:00 |
Phil Ringnalda
|
1b76ccfe19
|
Back out 519f41fa596f (bug 793408) for Windows build bustage on a CLOSED TREE
|
2012-09-27 14:38:23 -07:00 |
Ehsan Akhgari
|
f1fd529b1c
|
Bug 793408 - Remove some prtypes.h #includes from gfx; r=jrmuizel
|
2012-09-22 11:34:22 -04:00 |
Ehsan Akhgari
|
4192c26db6
|
Backout changeset 24f4f77fba76 (bug 793408) because of broken builds on a CLOSED TREE
|
2012-09-27 10:24:08 -04:00 |
Ehsan Akhgari
|
aa7494f465
|
Bug 793408 - Remove some prtypes.h #includes from gfx; r=jrmuizel
|
2012-09-22 11:34:22 -04:00 |
Bas Schouten
|
a1cb82c019
|
Bug 792207 - Part 1: Retain ScaledFont objects for gfxFonts. r=jrmuizel
|
2012-09-24 15:02:49 +00:00 |
Makoto Kato
|
6025716d17
|
Bug 785321 - Replace PRUptrdiff with uintptr_t, prtdiff_t or etc; r=ehsan,jrmuizel
|
2012-09-14 16:09:52 -04:00 |
Edwin Flores
|
00ae723fe4
|
Bug 719286 - Include SVG glyphs when calculating glyph extents r=jfkthame
|
2012-09-06 16:58:46 +12:00 |
Edwin Flores
|
3b0fe9adec
|
Bug 719286 - Add new gfxTextObjectPaint paint wrapper for use with SVG glyphs r=roc
|
2012-09-06 16:58:46 +12:00 |
Edwin Flores
|
ca569f62dc
|
Bug 719286 - Basic OpenType SVG functionality r=roc
|
2012-09-06 16:57:54 +12:00 |
Randell Jesup
|
65539ef89c
|
Bug 773151: Convert nsCAutoString->nsAutoCString CLOSED TREE r=bsmedberg
|
2012-09-01 22:35:17 -04:00 |
Ehsan Akhgari
|
e368dc9c85
|
Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg
This patch was generated by a script. Here's the source of the script for
future reference:
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*/.hg*" \
! -wholename "obj-ff-dbg*" \
! -name nsXPCOMCID.h \
! -name prtypes.h \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-o -iname "*.c" \
-o -iname "*.cc" \
-o -iname "*.idl" \
-o -iname "*.ipdl" \
-o -iname "*.ipdlh" \
-o -iname "*.mm" \) | \
xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}
convert PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t
convert PRIntn int
convert PRUintn unsigned
convert PRSize size_t
convert PROffset32 int32_t
convert PROffset64 int64_t
convert PRPtrdiff ptrdiff_t
convert PRFloat64 double
|
2012-08-22 11:56:38 -04:00 |
Cameron McCormack
|
a273d9a029
|
Bug 655877 - Part 25: Give gfxTextRuns the ability to invoke a callback after painting glyphs and partial ligatures. r=roc
|
2012-08-08 21:37:12 +10:00 |
Jonathan Kew
|
35700912b8
|
bug 780409 - updates to thebes harfbuzz integration for hb api changes. r=jdaggett
|
2012-08-06 11:42:20 +01:00 |
Aryeh Gregor
|
d0ad5a7d0c
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
Anthony Jones
|
addbceb368
|
Bug 761895; Fixed Azure/Cairo canvas font support on gtk and android. r=karl
|
2012-07-24 22:18:39 +12:00 |
Nicholas Cameron
|
e5b55a65ac
|
Back out bug 746883, bug 764125, bug 761895, bug 746883, bug 748116
|
2012-07-26 18:48:24 +12:00 |
Anthony Jones
|
0de5f9da76
|
Bug 761895; Fixed Azure/Cairo canvas font support on gtk and android. r=karl
|
2012-07-24 22:18:39 +12:00 |
Jonathan Kew
|
fb06cb14f2
|
bug 769475 - incorrect font used for italicized Arabic text when font-family is Arial or Times New Roman. r=smontagu
|
2012-07-23 03:48:26 -04:00 |
Ed Morley
|
c6ba1ec99f
|
Backout 07cd3d70434c & 9be67e1a7b4f (bug 769475) for failures in arial-arabic.html
|
2012-07-23 11:01:59 +01:00 |
Jonathan Kew
|
a363194212
|
bug 769475 - incorrect font used for italicized Arabic text when font-family is Arial or Times New Roman. r=smontagu
|
2012-07-23 03:48:26 -04:00 |
Rafael Ávila de Espíndola
|
61a4f26d9c
|
Bug 774016 - Remove extra ;. r=khuey.
|
2012-07-16 11:01:45 -04:00 |
Jonathan Kew
|
847da3363a
|
bug 754452 - use GDI synthetic italic rather than cairo font matrix when it's safe to do so, for better glyph spacing. r=jdaggett
|
2012-07-03 11:42:07 +01:00 |
Jonathan Kew
|
b36614de01
|
bug 764005 - optimize gfxFontGroup::FindFontForChar for the most common case, and lift array Length() accesses out of other loops in font code. r=smontagu
|
2012-06-20 20:58:18 +01:00 |
Ehsan Akhgari
|
f70d1188f6
|
Bug 758992 - Make the classes which use the XPCOM nsISupports implementation macros final, to avoid the warning about deleting using a pointer to a base class with virtual functions and no virtual dtor (gfx parts); r=joedrew
|
2012-06-13 00:14:28 -04:00 |
Bas Schouten
|
5934a62347
|
Bug 758120: Block attempts to do manual subpixel-AA on bitmap fonts. r=jfkthame
|
2012-05-24 17:43:55 +02:00 |
Nicholas Cameron
|
0fdb7cc441
|
Bug 752380. Refactor gfxFont out of Azure. r=Bas
|
2012-05-17 10:30:10 +12:00 |
Gervase Markham
|
82ff7027aa
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
John Daggett
|
15b7adf246
|
Bug 718539. Trim out old featureSettings string code. r=jkew
|
2012-04-26 15:27:08 +09:00 |
John Daggett
|
bae4d92415
|
Bug 718539. Merge per-font and style rule font features. r=jkew
|
2012-04-26 15:26:03 +09:00 |
John Daggett
|
44ebb6fb98
|
Bug 718539. Move gfxFontFeature to a separate header. r=jkew
|
2012-04-26 15:22:24 +09:00 |
John Daggett
|
ed5cb19215
|
Bug 710727. Share cmaps across all fonts. r=jkew, a=tracking-firefox
|
2012-04-19 08:59:43 +09:00 |
Jonathan Kew
|
4bf22a422f
|
bug 745555 - preserve character-identity flags in the CompressedGlyph record when updating glyph information. r=roc
|
2012-04-16 13:54:50 +01:00 |
Bas Schouten
|
cf4dd68f30
|
Bug 743593: Properly cast gfxFont based on type. r=jfkthame
|
2012-04-11 16:55:31 +02:00 |
John Daggett
|
61265580b9
|
Bug 710727. Revert shared cmap patch due to reftest/mochitest-4 failures on Win7. a=bustage
|
2012-04-09 22:03:28 +09:00 |
John Daggett
|
1e5af79b2e
|
Bug 710727. Share cmaps across all fonts. r=jkew
|
2012-04-09 13:31:55 +09:00 |
Nicholas Nethercote
|
6ca9f23930
|
Bug 711895 - Tweak the warning options used for GCC builds (3rd attempt). r=waldo,derf,khuey,mhommey.
--HG--
extra : rebase_source : 20540c9b838ee3be6cb0847c1b90fdc3bd44059d
|
2012-03-21 22:21:16 -07:00 |