Ehsan Akhgari
|
ef4b479714
|
Bug 872127 - Part 2: Replace mozilla/StandardInteger.h with stdint.h; r=Waldo,ted
|
2013-07-30 10:25:31 -04:00 |
|
Benoit Girard
|
be559fe75a
|
Bug 892861 - Remove useless -D flags 'IMPL_THEBES,_IMPL_NS_GFX,...'. r=glandium
|
2013-07-12 08:56:54 -04:00 |
|
Makoto Kato
|
ea6a29827f
|
Bug 886689 - Don't use OS_TEST == arm since some environments are set as armv7 etc. r=gps
|
2013-06-26 15:34:07 +09:00 |
|
Brian O'Keefe
|
11bcc1cd9e
|
Bug 875934 - Move LIBRARY_NAME to moz.build (batch #1); r=mshal
--HG--
extra : rebase_source : 385d3fd65475ffc18ee44ae088753649470e214b
|
2013-06-17 15:21:01 -04:00 |
|
Mike Shal
|
5169c0a913
|
Bug 864774 - Part 2: Move CPPSRCS to moz.build as CPP_SOURCES; r=joey CLOSED TREE
From 9e0ba7f425143f545eb6c4b26a9a96b5ade4d8e9 Mon Sep 17 00:00:00 2001
|
2013-04-23 17:54:15 -04:00 |
|
Mike Shal
|
df7deac25b
|
Bug 846634 - Part 2: Move EXPORTS to moz.build; r=joey
|
2013-04-16 15:24:43 -04:00 |
|
Kyle Machulis
|
72a717a860
|
Bug 855465 - Add emacs python mode comments to moz.build files; r=gps
|
2013-04-01 11:36:59 -07:00 |
|
Kyle Machulis
|
43628a7867
|
Backout for changeset 03452b187c14 (Bug 855465) due to bustage on a CLOSED TREE; r=qdot
|
2013-03-29 15:12:58 -07:00 |
|
Kyle Machulis
|
334c0800cf
|
Bug 855465 - Add emacs python mode comments to moz.build files; r=gps
--HG--
extra : rebase_source : 004a756492323e1a049586e85b3be5037159df20
|
2013-03-29 13:56:18 -07:00 |
|
Mike Shal
|
7ecea60097
|
Bug 844654 - Part 2: Move MODULE to moz.build; rs=gps
|
2013-03-19 11:47:00 -07:00 |
|
Gregory Szorc
|
6145f28e00
|
Bug 784841 - Part 18o: Convert /gfx; r=jrmuizel f=Ms2ger
|
2013-02-25 12:47:21 -08:00 |
|
Ehsan Akhgari
|
f603b68908
|
Bug 793408 - Remove some prtypes.h #includes from gfx; r=jrmuizel
|
2012-09-28 14:56:27 -04: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 |
|
Ehsan Akhgari
|
4ff7580683
|
Bug 785321 follow-up: Remove a hunk from the patch which is no longer needed
DONTBUILD
|
2012-09-17 22:00:07 -04: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 |
|
Ehsan Akhgari
|
845651448b
|
Bug 579517 - Part 5: Add missing StandardInteger.h #includes where needed; r=bsmedberg
Landing on a CLOSED TREE
|
2012-08-08 17:08:17 -04:00 |
|
Ehsan Akhgari
|
f22f8b7a49
|
Bug 579517 - Part 4: Manually rewrite some parts of the code base not covered by the automated conversion; r=bsmedberg
|
2012-08-22 11:59:54 -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 |
|
Mike Hommey
|
70d7c821af
|
Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted
|
2012-08-04 20:26:44 +02:00 |
|
Mike Hommey
|
03af8b0c50
|
Backout changeset 2ef51674316a (bug 774032 bonus) for various Mochitest bustages on a CLOSED TREE
|
2012-08-04 10:38:41 +02:00 |
|
Mike Hommey
|
7096160830
|
Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted
|
2012-08-04 08:48:56 +02:00 |
|
Jan Beich
|
dd8e2e7ec6
|
Bug 779847: use optimized color conversion on BSDs. r=doublec
|
2012-08-03 15:04:39 +02:00 |
|
Gervase Markham
|
68d38d677f
|
Bug 759095 - upgrade license to MPL 2, and other licensing cleanups.
--HG--
extra : rebase_source : da55a4937383eda2baf7c9a362501da8ee664146
|
2012-05-29 16:52:43 +01:00 |
|
Timothy B. Terriberry
|
f6c691eae5
|
Bug 752293 - Mark stacks non-executable in yuv_row_arm.s, r=glandium
|
2012-05-06 05:41:14 -07: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 |
|
Nicholas Nethercote
|
7ac3a573ad
|
Backed out changeset 0124795a8cbb (bug 711895) due to i10n build bustage. r=me.
|
2012-03-21 21:46:27 -07:00 |
|
Nicholas Nethercote
|
e2181e8fb2
|
Bug 711895 - Tweak the warning options used for GCC builds (2nd attempt). r=waldo,derf,khuey,mhommey,jwatt.
|
2012-03-15 19:40:00 -07:00 |
|
Kyle Huey
|
53fc868531
|
Back out Bug 711895 for breaking l10n builds.
|
2011-12-29 15:45:51 -05:00 |
|
Nicholas Nethercote
|
6c18b646e6
|
Bug 711895 - Tweak the warning options used for GCC builds. r=waldo, derf.
--HG--
extra : rebase_source : bbe982c5feceac25fb4c0ccd03ced3a874205c38
|
2011-12-28 19:59:19 -08:00 |
|
Jonathan Watt
|
66f54fe5a4
|
Bug 695303 - Add a mozilla::clamped function to replace NS_CLAMP (so side affects of args are evaluated no more than once) and NS_MIN(max, NS_MAX(val, min)) (to make code clearer). r=bsmedberg.
|
2011-10-28 19:33:28 +01:00 |
|
Mike Hommey
|
73e9c2d6c7
|
Bug 676252 part 1 - Don't use $(OBJ_SUFFIX) before including config.mk. r=ted
|
2011-08-29 07:34:02 +02:00 |
|
Mike Hommey
|
a8bdb31026
|
Bug 670329 - Avoid bumping ARM target because of NEON code in gfx. r=jmuizelaar
|
2011-07-15 10:15:28 +02:00 |
|
Jacob Bramley
|
9a97cc1996
|
Bug 666918: Allow some routines to omit the frame pointer even with --enable-profiling. This will break call-graphs for these functions, but an --enable-profiling build won't work without it. [r=cjones]
|
2011-07-05 09:48:40 +01:00 |
|
Matt Woodrow
|
e64b02f01a
|
Bug 656185 - Part 2 - Upload the entire image for PlanarYCbCrImageOGL to a texture and clip using texture coordinates. r=derf
|
2011-07-05 14:52:00 +12:00 |
|
Matt Woodrow
|
f47d6dca8b
|
Back out bug 656185 due to windows compile failures
|
2011-06-27 15:21:22 +12:00 |
|
Matt Woodrow
|
6e295129f3
|
Bug 656185 - Part 2 - Handle odd crop offsets correctly with OpenGl. r=derf
|
2011-06-27 14:32:16 +12:00 |
|
Ed Morley
|
8aaddd0334
|
Bug 659621 - Remove EXTRA_DSO_LIBS, EXTRA_DSO_LDOPTS, OS_LIBS from makefiles containing LIBXUL_LIBRARY = 1, now that libxul is always built; r=ted
|
2011-06-12 03:49:00 -04:00 |
|
Makoto Kato
|
ac69aff181
|
Bug 571739 - Fix VC8 support on Win64. r=neil
|
2011-05-09 00:07:58 +09:00 |
|
Makoto Kato
|
b40b0293ca
|
Bug 571739 - Use SIMD for conversion from RGB to YUV on Win64. r=kinetik
|
2011-04-18 09:51:18 +09:00 |
|
Timothy B. Terriberry
|
22100730c3
|
Bug 650834 - Add casts to pointer differences in assertion r=dougt
|
2011-04-18 12:22:51 -07:00 |
|
Timothy B. Terriberry
|
beb5d7222d
|
Bug 634557 - Implement ScaleYCbCr42xToRGB565_BilinearY_Row_NEON, r=jbramley
|
2011-04-14 17:34:18 -07:00 |
|
Timothy B. Terriberry
|
2bdc74c61a
|
Bug 634557 - ScaleYCbCrToRGB565: Reference C version, r=doublec
|
2011-04-14 17:32:15 -07:00 |
|
Tim Terribe
|
962584e61d
|
Bug 641014 - Fix broken NEO Y'CbCr to RGB conversion - r=doublec
--HG--
extra : rebase_source : fddd6ccddd083484c8b46a53747fb2058a46463e
|
2011-04-09 06:59:22 +12:00 |
|
Tim Terribe
|
21090ba813
|
Bug 583958 - Add NEON detection to SSE.h - r=jmuizelaar
--HG--
extra : rebase_source : 2ae9de7e5a914e7ea30c3ef432edfa100027d656
|
2011-04-09 06:57:52 +12:00 |
|
Timothy B. Terriberry
|
b816cb6603
|
Bug 641019 - "Crash on video with odd widths and 16-bit displays" [r=tterribe a=stuart]
|
2011-03-15 15:01:00 -07:00 |
|
Makoto Kato
|
6af9bf0044
|
Bug 637961 - Crash in [@ yv12_to_rgb565_neon]. r=jmuizelaar a=blocking-fennec
|
2011-03-08 09:59:44 +09:00 |
|
Tom Brinkman
|
b4bb3b84b9
|
Bug 620526 - yv12 to rgb565 neon should not be used on cpus without neon. r=jmuizelaar. ARM neon check. a=blocking-fennec
|
2011-01-19 09:53:46 -08:00 |
|