Nicholas Cameron
|
1cccb0d825
|
Bug 734668; remove Thebes canvas. r=roc
--HG--
extra : rebase_source : 57b08c33f72cd611deb30dc1639060a719747849
|
2012-10-12 22:42:51 +13:00 |
|
Ed Morley
|
09fad7f017
|
Backout 2231b8e778a3 (bug 715658) for errors linking on Windows
|
2012-10-10 12:15:30 +01:00 |
|
Uli Schlachter
|
4c511b46d7
|
Bug 722975 - --enable-system-cairo build is broken after Bug 715658 fixed. r=Bas
|
2012-10-10 06:32:36 -04:00 |
|
Anthony Jones
|
a0fe5018ee
|
Bug 793923 - Fixed gfxPlatform to use gfx.content.azure.backends properly. r=ncameron,roc
--HG--
extra : rebase_source : 2aecac9b17cb570a87ad34bb7680847db7a8f457
|
2012-10-09 11:45:35 +02:00 |
|
Bas Schouten
|
29ab97de1c
|
Bug 793175: Discard a cached SourceSurface if it was created for the wrong BackendType. r=jrmuizel
|
2012-10-08 15:44:36 +13:00 |
|
Bas Schouten
|
555c2a462b
|
Backed out changeset 41b5180cf6af DONTBUILD
|
2012-10-08 12:56:00 +02:00 |
|
Bas Schouten
|
e78be54307
|
Bug 793175: Discard a cached SourceSurface if it was created for the wrong BackendType. r=jrmuizel
|
2012-10-08 15:44:36 +13:00 |
|
Ed Morley
|
ae328bf180
|
Backout 6c89d2b6ea4b (bug 793175) on suspicion of somehow causing Win7 opt permaorange in browser_updatessl.js and friends
|
2012-10-08 10:31:57 +01:00 |
|
Bas Schouten
|
d057f4086a
|
Bug 793175: Discard a cached SourceSurface if it was created for the wrong BackendType. r=jrmuizel
--HG--
extra : rebase_source : b94e3deb2ba3cf7d461ebc25588c7ea45361b521
|
2012-10-08 15:44:36 +13:00 |
|
Anthony Jones
|
64a3fde7b6
|
Bug 793085 - Remove UseAzureContentDrawing() in favour of SupportsAzureContent(). r=ncameron
|
2012-10-01 22:12:13 -04:00 |
|
Bas Schouten
|
dac31dcf8d
|
Bug 792207 - Part 6: Add simple code allow enabling browser recording. r=jrmuizel
|
2012-09-24 15:02:50 +00:00 |
|
Bas Schouten
|
a1cb82c019
|
Bug 792207 - Part 1: Retain ScaledFont objects for gfxFonts. r=jrmuizel
|
2012-09-24 15:02:49 +00:00 |
|
Ehsan Akhgari
|
8cc30b88b2
|
Bug 792502 - Kill the FunctionTimer code; r=vlad
|
2012-09-19 16:59:38 -04:00 |
|
Koosha Khajeh Moogahi
|
dcf81f4fb0
|
Bug 788242: Implement and make use of void versions of NS_ENSURE_* macros; r=ehsan,bsmedberg
|
2012-09-14 14:30:31 +04:30 |
|
Anthony Jones
|
a84827280d
|
Bug 789367 - Add content preference for GTK platform; r=nrc
|
2012-09-16 20:23:00 -07:00 |
|
Phil Ringnalda
|
e68bd50029
|
Back out 9805ecdb8f66 (bug 789367) on suspicion of breaking the build
|
2012-09-16 17:59:25 -07:00 |
|
Anthony Jones
|
1e224ae09c
|
Bug 789367 - Add content preference for GTK platform. r=nrc
|
2012-09-16 20:20:16 -04:00 |
|
Andrew Quartey
|
0e25c1e408
|
Bug 743755 - Remove OSMesa support r=bjacob
|
2012-09-07 18:35:22 -04:00 |
|
Edwin Flores
|
ca569f62dc
|
Bug 719286 - Basic OpenType SVG functionality r=roc
|
2012-09-06 16:57:54 +12:00 |
|
Anthony Jones
|
5a0d03626e
|
Bug 781731 - Fix Azure Cairo GTK perf by removing xlib to buffered image conversion. r=mattwoodrow
|
2012-09-02 19:07:05 -04:00 |
|
Randell Jesup
|
65539ef89c
|
Bug 773151: Convert nsCAutoString->nsAutoCString CLOSED TREE r=bsmedberg
|
2012-09-01 22:35:17 -04:00 |
|
Ms2ger
|
a77fd1cc47
|
Backout bug 781731.
|
2012-08-27 12:27:40 +02:00 |
|
Anthony Jones
|
7f47812dfb
|
Bug 781731 - Fixed Azure Cairo GTK perf by removing xlib to buffered image conversion; r=Bas
|
2012-08-27 11:31:33 +02:00 |
|
David Zbarsky
|
b20ba33014
|
Bug 785657 - Enable async animations in content processes r=cjones
|
2012-08-25 21:27:28 -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 |
|
Nicholas Cameron
|
c45bb4fff0
|
Bug 779001. Falling back to Cairo for large canvases. r=roc
|
2012-07-31 19:57:28 +12:00 |
|
Nicholas Cameron
|
afcbca306a
|
Bug 776802; Give better info about Azure. r=Bas
|
2012-07-31 18:30:10 +12:00 |
|
Nicholas Cameron
|
5dd825ba63
|
Back out bug 779001, bug 746883, bug 778595, bug 776803, bug 7118849
|
2012-07-31 18:17:23 +12:00 |
|
Nicholas Cameron
|
77df30f28c
|
Bug 779001. Falling back to Cairo for large canvases. r=roc
|
2012-07-31 13:46:05 +12:00 |
|
Nicholas Cameron
|
883ca8cb74
|
Bug 776802; Give better info about Azure. r=Bas
|
2012-07-31 13:45:59 +12:00 |
|
Aryeh Gregor
|
d0ad5a7d0c
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Bas Schouten
|
79321c56de
|
Bug 777700 - Part 2: Verify if a cached SourceSurface is still valid. r=jrmuizel
|
2012-07-28 02:33:08 +02:00 |
|
Benjamin Peterson
|
b91c0c80ef
|
Backout 22eea4925efc for windows failures
|
2012-07-27 21:47:06 -07:00 |
|
Bas Schouten
|
8f4e48a32e
|
Bug 777700 - Part 2: Verify if a cached SourceSurface is still valid. r=jrmuizel
|
2012-07-28 02:33:08 +02:00 |
|
Nicholas Cameron
|
3e80396ca2
|
Bug 746883; fix the bustage possibly caused by 746896. r=mattwoodrow
|
2012-07-26 14:30:20 +12:00 |
|
Nicholas Cameron
|
952f2e4661
|
Bug 764125; remove AzureEnabled from gfxInfo and replace with backend check. r=roc
|
2012-07-26 13:56:42 +12:00 |
|
Nicholas Cameron
|
9c67b116d5
|
Bug 764125; sort out preferred and fallback Azure backends for all platforms (gfxPlatform). r=Bas
|
2012-07-25 12:45:58 +12: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 |
|
Anthony Jones
|
57cabdb240
|
Bug 764125; fixed crash test fail on gtk caused by null. r=Bas
|
2012-07-24 22:18:38 +12:00 |
|
Anthony Jones
|
ce97d078d1
|
Bug 764125; pretty sure this inverted logic will break something on windows; r=Bas
|
2012-07-24 22:18:38 +12:00 |
|
Nicholas Cameron
|
a09794d38c
|
Bug 764125; pass around the size of a gfxASurface when creating a DrawTarget. r=Bas
|
2012-07-24 22:18:38 +12:00 |
|
Nicholas Cameron
|
9bcaf104d6
|
Bug 764125; Add DrawTarget arg to GetScaledFontForFont. r=Bas
|
2012-07-24 22:18:37 +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 |
|
Nicholas Cameron
|
5c8c9441ba
|
Bug 746883; fix the bustage possibly caused by 746896. r=mattwoodrow
|
2012-07-26 14:30:20 +12:00 |
|
Nicholas Cameron
|
c934b676bb
|
Bug 764125; remove AzureEnabled from gfxInfo and replace with backend check. r=roc
|
2012-07-26 13:56:42 +12:00 |
|
Nicholas Cameron
|
3843356847
|
Bug 764125; sort out preferred and fallback Azure backends for all platforms (gfxPlatform). r=Bas
|
2012-07-25 12:45:58 +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 |
|
Anthony Jones
|
48ad611564
|
Bug 764125; fixed crash test fail on gtk caused by null. r=Bas
|
2012-07-24 22:18:38 +12:00 |
|
Anthony Jones
|
9f057a5253
|
Bug 764125; pretty sure this inverted logic will break something on windows; r=Bas
|
2012-07-24 22:18:38 +12:00 |
|
Nicholas Cameron
|
1292400ee5
|
Bug 764125; pass around the size of a gfxASurface when creating a DrawTarget. r=Bas
|
2012-07-24 22:18:38 +12:00 |
|