Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Reorder imports | Pyfisch | 2018-11-06 | 1 | -3/+5 |
| | |||||
* | `cargo fix --edition` | Simon Sapin | 2018-11-06 | 1 | -6/+6 |
| | |||||
* | Format script component | chansuke | 2018-09-19 | 1 | -6/+10 |
| | |||||
* | Always use a WebGLVertexArrayObject to handle vertex attribs | Anthony Ramine | 2018-08-02 | 1 | -97/+7 |
| | | | | This lets us clean up how buffers are reference-counted. | ||||
* | Store a reference to the WebGLRenderingContext in WebGLObject | Anthony Ramine | 2018-07-24 | 1 | -9/+1 |
| | |||||
* | Rename VertexAttribs::set_from to VertexAttribs::clone_from | Anthony Ramine | 2018-07-05 | 1 | -2/+2 |
| | |||||
* | Introduce VertexAttribData | Anthony Ramine | 2018-07-05 | 1 | -4/+4 |
| | |||||
* | Rename BoundAttribBuffers to VertexAttribs and make it store a slice | Anthony Ramine | 2018-07-05 | 1 | -6/+12 |
| | |||||
* | Implement checks for vertex attribs enabled as arrays without a bound buffer | Anthony Ramine | 2018-06-20 | 1 | -12/+12 |
| | |||||
* | Add support for filtering WebGL extensions based on WebGL version | Imanol Fernandez | 2017-10-31 | 1 | -2/+6 |
| | |||||
* | 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 | -3/+3 |
| | | | | | | | 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 MutNullableJS<T> to MutNullableDom<T> | Anthony Ramine | 2017-09-26 | 1 | -3/+3 |
| | |||||
* | Rename JS<T> to Dom<T> | Anthony Ramine | 2017-09-26 | 1 | -3/+3 |
| | |||||
* | Rename dom::bindings::js to dom::bindings::root | Anthony Ramine | 2017-09-26 | 1 | -1/+1 |
| | |||||
* | Revert "Auto merge of #18114 - emilio:revert-webgl-refactor, r=nox" | Anthony Ramine | 2017-08-16 | 1 | -8/+7 |
| | | | | | 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 | -7/+8 |
| | | | | | This reverts commit 90f55ea4580e2a15f7d70d0491444f18b972d450, reversing changes made to 2e60b27a2186a8cba4b952960155dfcf3f47d7db. | ||||
* | Improve WebGL architecture. | Imanol Fernandez | 2017-08-15 | 1 | -8/+7 |
| | |||||
* | Upgrade to the latest version of WebRender | Martin Robinson | 2017-07-13 | 1 | -2/+2 |
| | |||||
* | Implement WebGL extensions. | Imanol Fernandez | 2017-05-18 | 1 | -0/+166 |