Dan Glastonbury
|
04f3c9ba4f
|
Bug 1170855 - Part 6: Implement Sampler binding tracking. r=jgilbert
|
2015-06-11 12:26:27 +10:00 |
|
Dan Glastonbury
|
bacdca56cf
|
Bug 1170855 - Part 1: Extract WebGL 2 specific pnames. r=jgilbert
|
2015-06-11 12:26:23 +10:00 |
|
Dan Glastonbury
|
0f72bf3eaa
|
Bug 1167504 - Part 11: Clean up buffer binding constraints. r=jgilbert
Checked against http://www.khronos.org/registry/webgl/sdk/tests/conformance2/buffers/
|
2015-06-10 13:52:10 +10:00 |
|
Dan Glastonbury
|
730aa3bb4a
|
Bug 1170454: Fix up instance type for VAOs. r=smaug,r=jgilbert
|
2015-06-10 11:53:08 +10: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 |
|
Kyle Fung
|
d37341fbbb
|
Bug 1164970 - Implement failIfMajorPerformanceCaveat. r=jgilbert, r=ehsan
|
2015-05-21 11:51:49 -04:00 |
|
Andreas Pehrson
|
04c7d50a83
|
Bug 1032848 - Part 2: Implement HTMLCanvasElement::CaptureStream. r=mt, r=jesup, r=jgilbert, r=gwright
|
2015-05-13 14:04:41 +08:00 |
|
Jeff Gilbert
|
5d26eae68a
|
Bug 1159034 - Only fake no-alpha for the backbuffer. - r=kamidphish
|
2015-04-30 17:30:26 -07:00 |
|
Dan Glastonbury
|
7a7e3a1d47
|
Bug 1156980 - Validate target in ImageData variants of TexImage2D/TexSubImage2D. r=jgilbert
|
2015-04-22 23:39:00 +02:00 |
|
Andrew McCreight
|
c3ece81b35
|
Bug 1062479 - Use static strings for WeakReference type names. r=ehsan
|
2015-04-24 09:43:01 -07:00 |
|
Andrea Marchesini
|
18b38ad706
|
Bug 1156632 - Remove unused forward class declarations - patch 4 - netwerk image and dom, r=ehsan
|
2015-04-22 08:29:20 +02:00 |
|
Dan Glastonbury
|
62a010a58d
|
Bug 1155470 - Fix queries. r=jgilbert
es3fTransformFeedbackTests exposed problems with queries. Queries are needed
to get the number of transformed primitives.
|
2015-04-22 11:24:12 +10:00 |
|
Jeff Gilbert
|
824a1e26e7
|
Bug 1009734 - Wait until draw to warn about texture completeness. - r=kamidphish
|
2015-04-06 19:05:11 -07:00 |
|
Dan Glastonbury
|
84bf0c5dba
|
Bug 1145501 - Extend validation of BufferData usage. r=jgilbert
|
2015-03-24 10:41:24 +10:00 |
|
Dan Glastonbury
|
ad878ca87a
|
Bug 1048745 - Non square UniformMatrix. r=jgilbert
|
2015-03-23 16:37:59 +10:00 |
|
Dan Glastonbury
|
a02f4b9868
|
Bug 1048721 - Implement WebGL2Sync. r=jgilbert
|
2015-03-23 16:20:53 +10: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 |
|
Dan Glastonbury
|
fc7edc189e
|
Bug 1110120 - Remove use of UniquePtr for XFB and UB tracking.; r=smaug
|
2015-02-09 00:13:00 +10:00 |
|
Jeff Gilbert
|
47fb80b5f2
|
Bug 1128001 - Workaround ANGLE DEPTH16 being DEPTH24_STENCIL8. - r=kamidphish
|
2015-03-11 18:23:56 -07:00 |
|
Jeff Gilbert
|
6d0bffcb21
|
Bug 1130616 - Support EXT_color_buffer_half_float on ANGLE. - r=jrmuizel,khuey
|
2015-02-24 14:09:09 -08:00 |
|
Jeff Gilbert
|
1cb925f4fb
|
Bug 1094457 - Implement ReadBuffer and RenderbufferStorageMultisample. - r=kamidphish
|
2015-02-18 16:57:05 -08:00 |
|
Jeff Gilbert
|
4f9c932a23
|
Bug 1124394 - Support Core profiles for GLContext. - r=kamidphish
|
2015-02-12 19:00:41 -08:00 |
|
Jeff Gilbert
|
9fb0acb86f
|
Backout 80a88a3badba for causing bug 1130086.
|
2015-02-06 11:37:04 -08:00 |
|
Jeff Gilbert
|
2f2bc0d4e9
|
Bug 1124394 - Support WebGL 2 with Core Profiles on Mac. - r=kamidphish
|
2015-02-04 16:34:55 -08:00 |
|
Wes Kocher
|
05450e379b
|
Backed out changeset 176166c0bae9 (bug 1124394) for b2g device bustage on a CLOSED TREE
|
2015-01-29 14:23:37 -08:00 |
|
Jeff Gilbert
|
f9484a4a62
|
Bug 1124394 - Support WebGL on Core Profiles on Mac. - r=kamidphish
|
2015-01-29 00:44:19 -08:00 |
|
Jeff Gilbert
|
dceb0a1342
|
Bug 1125445 - Only do backbuffer workaround if against backbuffer. - r=kamidphish
|
2015-01-26 18:27:24 -08:00 |
|
Wes Kocher
|
ecd3ae701e
|
Backed out changeset 783d0fe2770b (bug 1124394) for test bustage on a CLOSED TREE
|
2015-01-26 18:57:36 -08:00 |
|
Jeff Gilbert
|
9c0fb311a1
|
Bug 1124394 - Allow Core Profile GL contexts. - r=kamidphish
|
2015-01-26 17:18:45 -08:00 |
|
Jeff Gilbert
|
ff27d5e387
|
Bug 1109945 - Rewrite shader/program handling. - r=kamidphish
|
2015-01-15 15:40:39 -08:00 |
|
Carsten "Tomcat" Book
|
2e0fe7d467
|
Backed out changeset b5c6dd9423cf (bug 1109945) for gl2 test failures on a CLOSED TREE
|
2015-01-13 09:07:26 +01:00 |
|
Jeff Gilbert
|
ec409b7f23
|
Bug 1109945 - Rewrite shader/program handling. - r=kamidphish
|
2015-01-12 19:51:20 -08:00 |
|
Jeff Gilbert
|
60dca4eae2
|
Bug 1093967 - Implement BlitFramebuffer. r=kamidphish
|
2015-01-12 15:05:21 -08:00 |
|
Wes Kocher
|
af03b0b770
|
Backout ca411b1cf001 (bug 1109945) for shader editor failures
|
2015-01-09 21:03:54 -08:00 |
|
Wes Kocher
|
b5565eae8f
|
Backed out changeset 88cf7f2fe48f for build bustage
|
2015-01-09 19:15:54 -08:00 |
|
Jeff Gilbert
|
72bc59c2fd
|
Bug 1093967 - Implement BlitFramebuffer. r=kamidphish
|
2015-01-09 18:51:20 -08:00 |
|
Jeff Gilbert
|
a28e4f5f24
|
Bug 1109945 - Rewrite shader/program handling. - r=kamidphish
|
2015-01-09 18:40:56 -08:00 |
|
Ehsan Akhgari
|
7bca48d724
|
Bug 1118547 - Mark virtual overridden functions as MOZ_OVERRIDE in dom/canvas; r=baku
|
2015-01-07 10:19:12 -05:00 |
|
Dan Glastonbury
|
3ebe077748
|
Bug 1048731 - [WebGL2] Implement new buffer binding targets. r=jgilbert
|
2014-12-05 17:04:55 +10:00 |
|
Benjamin Bouvier
|
3a3034429c
|
Bug 1102870: Add Float32x4 and Int32x4 to the list of Scalar::Types; r=sfink,luke
|
2014-12-05 05:01:47 +01:00 |
|
Dan Glastonbury
|
a0c3443f2f
|
Bug 1048724 - [WebGL2] Transform Feedback. r=jgilbert,smaug
|
2014-11-26 12:00:06 +10:00 |
|
Dan Glastonbury
|
1eea955fd2
|
Bug 1048719 - [WebGL2] Remove WebGLQueryRefPtr typedef. r=jgilbert
|
2014-11-26 13:46:49 +10:00 |
|
Dan Glastonbury
|
222307a25f
|
Bug 1048745 - [WebGL2] Integer vertex attributes. r=jgilbert
|
2014-06-24 10:56:21 +10:00 |
|
Jeff Gilbert
|
d9b9968e9c
|
Bug 1099427 - Reformat WebGL. - r=kamidphish
|
2014-11-13 20:03:50 -08:00 |
|
Dan Glastonbury
|
1b2697f028
|
Bug 1048719 - [WebGL2] Query objects. r=jgilbert
|
2014-11-03 15:35:04 +10:00 |
|
jdashg
|
eed09f9cc7
|
Bug 1102667 - Fix our float texture/rb/fb support. - r=kamidphish
|
2014-11-21 15:04:08 -08:00 |
|
Wes Kocher
|
1ba7a202a7
|
Backed out changeset 9336978bfa8c (bug 1102667)
|
2014-11-24 15:20:35 -08:00 |
|
jdashg
|
e5423ef83f
|
Bug 1102667 - Fix float-texture rb/fb/read support. - r=kamidphish
|
2014-11-21 15:04:08 -08:00 |
|
Dan Glastonbury
|
7123d97de2
|
Bug 1097411 - Extend error reporting. r=jgilbert
|
2014-10-27 09:35:02 +10:00 |
|