Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use `#![register_tool]` instead of `#![register_attr]` | Simon Sapin | 2019-11-15 | 1 | -1/+1 |
| | | | | CC https://github.com/rust-lang/rust/issues/66079 | ||||
* | Replace use of gleam in webgl with sparkle. | Josh Matthews | 2019-09-11 | 1 | -1/+1 |
| | |||||
* | Make GL/GLES decisions based on the API in use. | Josh Matthews | 2019-07-12 | 1 | -2/+8 |
| | |||||
* | Add initial support for WebGL compressed textures | Mátyás Mustoha | 2019-05-21 | 1 | -0/+42 |
| | |||||
* | Rustfmt has changed its default style :/ | Simon Sapin | 2018-12-28 | 1 | -1/+1 |
| | |||||
* | Update MPL license to https (part 3) | Jan Andre Ikenmeyer | 2018-11-19 | 1 | -1/+1 |
| | |||||
* | `cargo fix --edition-idioms` | Simon Sapin | 2018-11-08 | 1 | -1/+1 |
| | |||||
* | Reorder imports | Pyfisch | 2018-11-06 | 1 | -2/+2 |
| | |||||
* | Format remaining files | Pyfisch | 2018-11-06 | 1 | -1/+2 |
| | |||||
* | `cargo fix --edition` | Simon Sapin | 2018-11-06 | 1 | -13/+13 |
| | |||||
* | Implement WEBGL_color_buffer_float and EXT_color_buffer_half_float (fixes ↵ | Josh Matthews | 2018-11-05 | 1 | -1/+24 |
| | | | | #22113) | ||||
* | Format script component | chansuke | 2018-09-19 | 1 | -71/+134 |
| | |||||
* | Always use a WebGLVertexArrayObject to handle vertex attribs | Anthony Ramine | 2018-08-02 | 1 | -45/+4 |
| | | | | This lets us clean up how buffers are reference-counted. | ||||
* | Implement instanced WebGL drawing calls (part of #20791) | Anthony Ramine | 2018-07-08 | 1 | -1/+30 |
| | |||||
* | Implement EXT_blend_minmax | Anthony Ramine | 2018-06-22 | 1 | -1/+15 |
| | |||||
* | Properly enable EXT_shader_texture_lod | Anthony Ramine | 2018-06-22 | 1 | -0/+1 |
| | |||||
* | Implement EXT_texture_filter_anisotropic | Anthony Ramine | 2018-06-06 | 1 | -7/+36 |
| | |||||
* | Add OESElementIndexUint to WebGLExtensions::register_all_extensions | Anthony Ramine | 2018-05-24 | 1 | -0/+1 |
| | |||||
* | Implement OES_element_index_uint (fixes #20384) | Anthony Ramine | 2018-03-23 | 1 | -4/+16 |
| | |||||
* | Replace NonNullJSObjectPtr with std::ptr::NonNull<JSObject> | Simon Sapin | 2018-01-22 | 1 | -2/+3 |
| | |||||
* | Add support for filtering WebGL extensions based on WebGL version | Imanol Fernandez | 2017-10-31 | 1 | -14/+32 |
| | |||||
* | Replace all uses of the `heapsize` crate with `malloc_size_of`. | Nicholas Nethercote | 2017-10-18 | 1 | -9/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Servo currently uses `heapsize`, but Stylo/Gecko use `malloc_size_of`. `malloc_size_of` is better -- it handles various cases that `heapsize` does not -- so this patch changes Servo to use `malloc_size_of`. This patch makes the following changes to the `malloc_size_of` crate. - Adds `MallocSizeOf` trait implementations for numerous types, some built-in (e.g. `VecDeque`), some external and Servo-only (e.g. `string_cache`). - Makes `enclosing_size_of_op` optional, because vanilla jemalloc doesn't support that operation. - For `HashSet`/`HashMap`, falls back to a computed estimate when `enclosing_size_of_op` isn't available. - Adds an extern "C" `malloc_size_of` function that does the actual heap measurement; this is based on the same functions from the `heapsize` crate. This patch makes the following changes elsewhere. - Converts all the uses of `heapsize` to instead use `malloc_size_of`. - Disables the "heapsize"/"heap_size" feature for the external crates that provide it. - Removes the `HeapSizeOf` implementation from `hashglobe`. - Adds `ignore` annotations to a few `Rc`/`Arc`, because `malloc_size_of` doesn't derive those types, unlike `heapsize`. | ||||
* | Replace uses of libcore with libstd in components/script | Simon Sapin | 2017-10-16 | 1 | -1/+1 |
| | |||||
* | Replace NonZero<*mut JSObject> with a wrapper to enable local trait impls. | Simon Sapin | 2017-10-16 | 1 | -3/+3 |
| | |||||
* | Remove use of unstable box syntax. | Simon Sapin | 2017-10-16 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | 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 Ramine | 2017-09-26 | 1 | -2/+2 |
| | | | | | | | 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 Ramine | 2017-09-26 | 1 | -5/+5 |
| | | | | | | | | 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 dom::bindings::js to dom::bindings::root | Anthony Ramine | 2017-09-26 | 1 | -1/+1 |
| | |||||
* | Use FnvHashMap in WebGL implementation. | Imanol Fernandez | 2017-08-24 | 1 | -14/+15 |
| | |||||
* | order derivable traits lists | Clément DAVID | 2017-08-23 | 1 | -3/+3 |
| | | | | | | Ignoring : - **generated**.rs - python/tidy/servo_tidy_tests/rust_tidy.rs | ||||
* | Implement WebGL OES_standard_derivatives extension. | Imanol Fernandez | 2017-08-22 | 1 | -3/+44 |
| | |||||
* | Revert "Auto merge of #18114 - emilio:revert-webgl-refactor, r=nox" | Anthony Ramine | 2017-08-16 | 1 | -1/+1 |
| | | | | | This reverts commit 4d10d39e8fe841c5fe2ac58da2daaa13c10c140e, reversing changes made to ee94e2b7c0bd327abe8f9545b2a1f792f67a2bdd. | ||||
* | Revert "Auto merge of #17891 - MortimerGoro:webgl_move, r=glennw,emilio" | Emilio Cobos Álvarez | 2017-08-16 | 1 | -1/+1 |
| | | | | | This reverts commit 90f55ea4580e2a15f7d70d0491444f18b972d450, reversing changes made to 2e60b27a2186a8cba4b952960155dfcf3f47d7db. | ||||
* | Improve WebGL architecture. | Imanol Fernandez | 2017-08-15 | 1 | -1/+1 |
| | |||||
* | Upgrade to the latest version of WebRender | Martin Robinson | 2017-07-13 | 1 | -1/+1 |
| | |||||
* | Implement WebGL extensions. | Imanol Fernandez | 2017-05-18 | 1 | -0/+197 |