aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webgl_extensions/ext
Commit message (Collapse)AuthorAgeFilesLines
* Replace uses of libcore with libstd in components/scriptSimon Sapin2017-10-161-3/+2
|
* Remove use of unstable box syntax.Simon Sapin2017-10-167-7/+7
| | | | | | | | | | | | | | | | | | | | http://www.robohornet.org gives a score of 101.36 on master, and 102.68 with this PR. The latter is slightly better, but probably within noise level. So it looks like this PR does not affect DOM performance. This is expected since `Box::new` is defined as: ```rust impl<T> Box<T> { #[inline(always)] pub fn new(x: T) -> Box<T> { box x } } ``` With inlining, it should compile to the same as box syntax.
* Rename Root<T> to DomRoot<T>Anthony Ramine2017-09-267-18/+18
| | | | | | | In a later PR, DomRoot<T> will become a type alias of Root<Dom<T>>, where Root<T> will be able to handle all the things that need to be rooted that have a stable traceable address that doesn't move for the whole lifetime of the root. Stay tuned.
* Rename DOMRefCell<T> to DomRefCell<T>Anthony Ramine2017-09-261-3/+3
| | | | | | | | I don't want to do such a gratuitous rename, but with all the other types now having "Dom" as part of their name, and especially with "DomOnceCell", I feel like the other cell type that we already have should also follow the convention. That argument loses weight though when we realise there is still DOMString and other things.
* Rename MutNullableJS<T> to MutNullableDom<T>Anthony Ramine2017-09-262-6/+6
|
* Rename JS<T> to Dom<T>Anthony Ramine2017-09-262-7/+7
|
* Rename dom::bindings::js to dom::bindings::rootAnthony Ramine2017-09-267-8/+7
|
* Fix texture_float and texture_half_float detection on some GPUsImanol Fernandez2017-09-052-2/+4
|
* Implement WebGL OES_standard_derivatives extension.Imanol Fernandez2017-08-222-0/+51
|
* Revert "Auto merge of #18114 - emilio:revert-webgl-refactor, r=nox"Anthony Ramine2017-08-162-9/+8
| | | | | This reverts commit 4d10d39e8fe841c5fe2ac58da2daaa13c10c140e, reversing changes made to ee94e2b7c0bd327abe8f9545b2a1f792f67a2bdd.
* Revert "Auto merge of #17891 - MortimerGoro:webgl_move, r=glennw,emilio"Emilio Cobos Álvarez2017-08-162-8/+9
| | | | | This reverts commit 90f55ea4580e2a15f7d70d0491444f18b972d450, reversing changes made to 2e60b27a2186a8cba4b952960155dfcf3f47d7db.
* Improve WebGL architecture.Imanol Fernandez2017-08-152-9/+8
|
* Upgrade to the latest version of WebRenderMartin Robinson2017-07-132-3/+3
|
* Implement WebGL extensions.Imanol Fernandez2017-05-187-0/+471