Jeff Gilbert
|
70a22b2878
|
Bug 1470325 - s/FooBinding/Foo_Binding/g - r=qdot
MozReview-Commit-ID: JtTcLL5OPF0
|
2018-06-26 17:05:01 -07:00 |
|
Jeff Gilbert
|
53c45ca8f7
|
Bug 1388565 - Fix WEBGL_compressed_texture_s3tc_srgb driver requirements. - r=daoshengmu
MozReview-Commit-ID: 5k7m1ebzlCx
|
2017-08-15 16:52:35 -07:00 |
|
Samuel Vargas
|
a6ad68456b
|
Bug 1325113 - Implement support for WEBGL_compressed_texture_s3tc_srgb - r=jgilbert,qdot
MozReview-Commit-ID: mI4dlB2lK
|
2017-06-08 14:54:37 -07:00 |
|
Chih-Yi Leu
|
8955ab275d
|
Bug 1355430 - Part1: s/MOZ_debug_get/MOZ_debug; r=baku,jgilbert
MozReview-Commit-ID: 7RUzGo3QJV5
|
2017-04-11 16:50:59 +08:00 |
|
Sebastian Hengst
|
f43fe8f15b
|
Backed out changeset 773f5b2cb868 (bug 1355430) for unexpectedly passing own test dom/canvas/test/webgl-mochitest/test_video_fastpath_mp4.html on Windows. r=backout
|
2017-04-18 21:09:25 +02:00 |
|
Chih-Yi Leu
|
bfc7685eb9
|
Bug 1355430 - Part1: s/MOZ_debug_get/MOZ_debug; r=baku,jgilbert
MozReview-Commit-ID: 7RUzGo3QJV5
|
2017-04-11 16:50:59 +08:00 |
|
Jeff Gilbert
|
d7d7402efe
|
Bug 1335296 - Expand about:support WebGL information. - r=qdot,daoshengmu,jrmuizel
MozReview-Commit-ID: 166aNL6VSOa
|
2017-02-02 16:50:19 -08:00 |
|
Jeff Gilbert
|
014b1596fb
|
Bug 1320030 - Simplify marking and deletion checks. - r=ethlin
|
2016-12-07 01:35:28 -08:00 |
|
Jeff Gilbert (:jgilbert)
|
8f0b095b8c
|
Bug 1250077 - Implement WEBGL_compressed_texture_astc. - r=ethlin
MozReview-Commit-ID: J2jB4tOJrTs
|
2016-11-28 18:12:32 -08:00 |
|
Jeff Gilbert (:jgilbert)
|
6ac2eea68b
|
Bug 1318507 - Update implementation. - r=ethlin
|
2016-11-22 23:59:24 -08:00 |
|
Jeff Gilbert (:jgilbert)
|
863f7b9e57
|
Bug 1308057 - Merge WebGLTimerQuery into WebGLQuery. - r=ethlin
MozReview-Commit-ID: 88b8DLd2uJ6
|
2016-11-14 14:04:41 -08:00 |
|
Jeff Gilbert
|
344346e300
|
Bug 1288649 - Fix non-unified-build errors. - r=ethlin
MozReview-Commit-ID: EI7FtmuEBl7
|
2016-07-25 14:46:20 -07:00 |
|
JerryShih
|
92309af31e
|
Bug 1274769 - handle the WebGLTimerQuery deletion status for GLContext cleanup. r=jgilbert
|
2016-05-24 18:52:00 +02:00 |
|
Jeff Gilbert
|
f61ba2b426
|
Bug 1229332 - Implement EXT_color_buffer_float. - r=jrmuizel
|
2016-05-04 16:39:02 -07:00 |
|
Morris Tseng
|
f837f1e2dc
|
Bug 917505 - Add WEBGL_compressed_texture_es3 support. r=jgilbert r=smaug
|
2016-01-08 10:12:22 +08:00 |
|
Jeff Gilbert
|
d658f53faf
|
Bug 1221822 - Finish the WebGL texture refactor. r=kamidphish,mattwoodrow,bz
|
2015-11-24 20:15:29 -08:00 |
|
Phil Ringnalda
|
80310b6e5c
|
Back out changeset 2f614bcd9405 (bug 1221822) for test_conformance__extensions__ext-sRGB.html and test_webgl2_alpha_luminance.html failures
|
2015-11-23 21:55:59 -08:00 |
|
Jeff Gilbert
|
8e72348cfc
|
Bug 1221822 - Finish the WebGL texture refactor. r=kamidphish,mattwoodrow,bz
|
2015-11-23 19:27:13 -08:00 |
|
Dan Glastonbury
|
8fecad072a
|
Bug 1184402 - Part 3: Add WebGL1 formats when enabling extensions. r=jgilbert
|
2015-07-30 13:33:38 +10:00 |
|
Jeff Gilbert
|
b1f1e1a811
|
Bug 1182371 - Misc WebGL cleanup. - r=kamidphish
|
2015-07-14 17:37:28 -07:00 |
|
Andrew Comminos
|
7c424a6127
|
Bug 1168845 - Update WebGL interface names to follow the spec. r=smaug, r=dglastonbury
|
2015-06-01 10:17:00 -04:00 |
|
Andrew Comminos
|
e3e7c96ba5
|
Bug 974832 - Add support for WebGL's EXT_disjoint_timer_query. r=dglastonbury, r=smaug
|
2015-05-27 07:12:00 -04:00 |
|
Ehsan Akhgari
|
ea41d8de48
|
Bug 1145631 - Part 1: Replace MOZ_OVERRIDE and MOZ_FINAL with override and final in the tree; r=froydnj
This patch was automatically generated using the following script:
function convert() {
echo "Converting $1 to $2..."
find . \
! -wholename "*/.git*" \
! -wholename "obj-ff-dbg*" \
-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 MOZ_OVERRIDE override
convert MOZ_FINAL final
|
2015-03-21 12:28:04 -04:00 |
|
Boris Zbarsky
|
3a822d99b4
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
|
2015-03-19 10:13:33 -04:00 |
|
Jeff Gilbert
|
d9b9968e9c
|
Bug 1099427 - Reformat WebGL. - r=kamidphish
|
2014-11-13 20:03:50 -08:00 |
|
Ehsan Akhgari
|
76c1898ebb
|
Land a part of bug 1061023 which was missed
|
2014-09-02 23:21:31 -04:00 |
|
Ehsan Akhgari
|
99fed18e00
|
Bug 1061023 - Fix more bad implicit constructors in DOM; r=baku
|
2014-09-01 18:26:43 -04:00 |
|
Vladimir Vukicevic
|
2e7a0ead11
|
b=965848; implement EXT_shader_texture_lod for WebGL; r=jgilbert, r=bz
|
2014-07-24 11:58:43 -04:00 |
|
Birunthan Mohanathas
|
3ae7697323
|
Bug 946065 - Part 1: Move content/canvas/ to dom/ and flatten subdirectories. r=ehsan
|
2014-07-25 14:15:35 -07:00 |
|