Benoit Jacob
|
81e7e4089d
|
Bug 779611 - part 4 - More WebGL extensions cleanup - r-jgilbert
|
2012-10-03 17:13:05 -04:00 |
|
Kan-Ru Chen (陳侃如)
|
62ed6d182a
|
Bug 788408 - Part 1. fReadPixels should also respect mFlipped. r=mattwoodrow
|
2012-10-02 10:42:09 +08:00 |
|
Benoit Girard
|
3ffd913d8e
|
Bug 796084 - Rename MOZ_JAVA_COMPOSITOR -> MOZ_ANDROID_OMTC. r=blassey
|
2012-10-01 16:01:35 -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 |
|
Benoit Jacob
|
64b67de1c3
|
Bug 750862 - Implement WEBGL_compressed_texture_pvrtc - r=jgilbert
|
2012-09-25 08:49:28 -04:00 |
|
Benoit Jacob
|
faf08d911a
|
Bug 790712 - Implement WEBGL_compressed_texture_atc - r=jgilbert
|
2012-09-25 08:49:28 -04:00 |
|
Chris Peterson
|
5544d9e588
|
Bug 778980 - Part 1: Fix gcc -Wconversion-null warnings in gfx/gl. r=joedrew
|
2012-09-14 11:52:42 -07:00 |
|
Anthony Jones
|
a84827280d
|
Bug 789367 - Add content preference for GTK platform; r=nrc
|
2012-09-16 20:23:00 -07:00 |
|
Ehsan Akhgari
|
589178c8cd
|
Merge IonMonkey into mozilla-inbound
|
2012-09-11 16:38:44 -04:00 |
|
David Anderson
|
09854d2b71
|
Merge from mozilla-central.
|
2012-09-10 12:16:38 -07:00 |
|
Rafael Ávila de Espíndola
|
ef282a6ec3
|
Bug 789983 - remove unused field. r=bjacob.
|
2012-09-11 08:59:34 -04:00 |
|
David Anderson
|
130b34a147
|
Merge from mozilla-central.
|
2012-09-07 15:17:11 -07:00 |
|
David Anderson
|
f6eca6c7f0
|
Merge from mozilla-central.
--HG--
rename : js/jsd/jsd_scpt.c => js/jsd/jsd_scpt.cpp
rename : js/jsd/jsd_stak.c => js/jsd/jsd_stak.cpp
rename : js/jsd/jsd_val.c => js/jsd/jsd_val.cpp
|
2012-09-05 16:18:11 -07:00 |
|
David Anderson
|
a77264d9fb
|
Merge from mozilla-central.
--HG--
rename : content/base/public/nsIFrameMessageManager.idl => content/base/public/nsIMessageManager.idl
|
2012-08-29 17:51:24 -07:00 |
|
Andrew Quartey
|
951e732fc2
|
Bug 761155 - Extend Mesa LLVMpipe Preference to GLX r=bjacob
|
2012-09-06 20:16:30 -04:00 |
|
Luqman Aden
|
ab8b047314
|
Bug 714937 - Replace GFX_PACKED_PIXEL with an inline function. r=jrmuizel
|
2012-09-06 01:31:29 -04:00 |
|
Ehsan Akhgari
|
e15d129ab3
|
Backout changeset 25fd2119c8e1 (bug 714937) for possible orange
|
2012-09-06 18:51:02 -04:00 |
|
Luqman Aden
|
0f1d23f090
|
Bug 714937 - Replace GFX_PACKED_PIXEL with an inline function. r=jrmuizel
|
2012-09-06 01:31:29 -04:00 |
|
David Anderson
|
3b9fed8952
|
Merge from mozilla-central.
|
2012-08-22 16:09:24 -07:00 |
|
David Anderson
|
a264d0ebc8
|
Merge from mozilla-central.
|
2012-08-21 15:59:12 -07:00 |
|
Randell Jesup
|
65539ef89c
|
Bug 773151: Convert nsCAutoString->nsAutoCString CLOSED TREE r=bsmedberg
|
2012-09-01 22:35:17 -04:00 |
|
Jeff Gilbert
|
aa54bdb4ef
|
Bug 735932 - Fix no-alpha ReadPixels on Mac+nVidia - r=bjacob
|
2012-08-31 16:47:03 -07:00 |
|
Jeff Gilbert
|
8e27375cb4
|
Bug 784925 - Add MakeCurrent for OGL Layers Readback path - r=bjacob
|
2012-08-31 16:44:33 -07:00 |
|
Jeff Gilbert
|
88506f3b6e
|
Bug 783663 - Add ReadScreenIntoImageSurface for reading pixels from the screen - r=bgirard
|
2012-08-20 17:13:32 -07:00 |
|
David Anderson
|
d522cd5bdc
|
Merge from mozilla-central.
|
2012-08-14 12:20:09 -07:00 |
|
Alexander Boldyrev
|
51cb65d942
|
Bug 738866 - Implement WEBGL_depth_texture extension - r=jgilbert
|
2012-08-13 18:17:55 -07: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 |
|
Jeff Gilbert
|
f928964d5a
|
Bug 766366 - Add GLContext::BlitTextureToTexture - r=bjacob
|
2012-08-21 20:30:20 -07:00 |
|
Jeff Gilbert
|
ae272e1e5c
|
Bug 782785 - Use temp surfaces to ReadPixels with correct stride - r=bjacob
|
2012-08-21 16:13:26 -07:00 |
|
David Anderson
|
7ab97db10e
|
Merge from mozilla-central.
|
2012-08-07 15:13:28 -07:00 |
|
David Anderson
|
f2b01e4cbb
|
Merge from mozilla-central.
--HG--
rename : layout/base/nsFrameTraversal.cpp => layout/base/nsFrameIterator.cpp
rename : layout/base/nsFrameTraversal.h => layout/base/nsFrameIterator.h
rename : browser/modules/WebappsInstaller.jsm => toolkit/webapps/WebappsInstaller.jsm
|
2012-08-06 12:44:06 -07:00 |
|
David Anderson
|
f0e6ae1aeb
|
Merge from mozilla-central.
|
2012-08-03 18:58:30 -07:00 |
|
David Anderson
|
b1e8dd2805
|
Merge from mozilla-central.
|
2012-08-02 13:47:20 -07:00 |
|
David Anderson
|
bd3a52c3e2
|
Merge.
--HG--
rename : content/base/src/nsGenericElement.h => content/base/public/FragmentOrElement.h
rename : content/base/src/nsGenericElement.cpp => content/base/src/FragmentOrElement.cpp
rename : gfx/thebes/nsCoreAnimationSupport.mm => gfx/2d/QuartzSupport.mm
|
2012-08-01 11:30:00 -07:00 |
|
David Anderson
|
56597a8412
|
Merge from mozilla-central.
|
2012-07-31 17:19:41 -07:00 |
|
David Anderson
|
e7f516869b
|
Merge from mozilla-central.
|
2012-07-30 13:15:39 -07:00 |
|
Aryeh Gregor
|
d0ad5a7d0c
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Vladimir Vukicevic
|
59761718ce
|
b=779019; disable added assertion due to Mac issues
|
2012-08-01 16:01:25 -04:00 |
|
Karl Tomlinson
|
ddce1daf02
|
b=779786 check fbconfig alpha instead of buffer size against render format r=mattwoodrow
--HG--
extra : transplant_source : %B6%E0%DDdG%F0%93%88%02%DDKf%D7%F8%9E%98%2A%19%92%BB
|
2012-08-07 13:22:23 +12: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 |
|
Benoit Jacob
|
1ec8a85786
|
Bug 778765 - Work around nouveau driver bug by changing samples=1 to samples=0 - r=jgilbert
|
2012-08-03 11:08:11 -04:00 |
|
Jacek Caban
|
933060d186
|
Bug 778129 - GLContextProviderEGL.cpp fails to compile on mingw-w64 r=snorp
|
2012-08-02 15:58:34 +02:00 |
|
Karl Tomlinson
|
bebe9debc8
|
b=687831 use XSync for glXWaitX with Mesa r=mattwoodrow
--HG--
extra : transplant_source : I%ADPT%BA%E4%A4%C8V%D64%EF%BF%B1l%C1%D2%FEe%B8
|
2012-07-31 14:54:21 +12:00 |
|
Karl Tomlinson
|
2d77cb161d
|
b=687831 remove unused gIsChromium r=mattwoodrow
--HG--
extra : transplant_source : %94nUe%29Y%A1%1B2g%10_%D0%DB%2B%C9%AAE%E1%F8
|
2012-07-31 14:54:21 +12:00 |
|
Karl Tomlinson
|
81992e1377
|
b=707722 select config in CreatePixmap to match Pixmap format r=mattwoodrow
--HG--
extra : transplant_source : %EB%B9%B8%E1%F8%19%E8%D9%94%A3GX%DC%EC%AA%23%8Be%13%F5
|
2012-07-31 14:54:21 +12:00 |
|
Karl Tomlinson
|
f8fc648682
|
b=778031 add FinishX to XSync less frequently and use it r=cjones
--HG--
extra : transplant_source : %BC%2C%80%F65%1DV%B7YVI%80%B2%FD%FE%F1%18G%06%26
|
2012-07-31 14:54:21 +12:00 |
|
Kyle Huey
|
b20f0e8194
|
No bug: Fix some class/struct mismatch warnings on MSVC.
--HG--
extra : rebase_source : 28a4fa9689a62c497fc537d3cc7b9bae4bda8d58
|
2012-08-24 11:45:05 -07:00 |
|
Vladimir Vukicevic
|
b300f51d4b
|
b=773071; more incorrect merge fixup for KHR_fence_sync; r=vlad
|
2012-07-30 11:07:23 -04:00 |
|