aboutsummaryrefslogtreecommitdiffstats
path: root/src/support
Commit message (Collapse)AuthorAgeFilesLines
* Cargoify servoJack Moffitt2014-09-0831-94/+0
|
* Merge pull request #3173 from mrobinson/typed-units-1Josh Matthews2014-09-021-0/+0
|\ | | | | Start using more typed units in the compositor
| * Start using more typed units in the compositorMartin Robinson2014-08-271-0/+0
| | | | | | | | | | | | Now that rust-layers is starting to support typed units, we can use them more thoroughly in the compositor. This is a step toward removing as many untyped units as possible.
* | Disable ssl on android as openssl needs to be added to build system.Glenn Watson2014-09-011-0/+0
|/
* Merge pull request #3162 from SimonSapin/png-enumJack Moffitt2014-08-271-0/+0
|\ | | | | Update to png::Image::pixels as an enum.
| * Update to png::Image::pixels as an enum.Simon Sapin2014-08-261-0/+0
| | | | | | | | | | | | | | https://github.com/servo/rust-png/pull/42 This does *not* fix the issue in #3154, but makes it fail!() instead of (maybe?) reading uninitalized memory.
* | Convert back to physical some layout coordinates.Simon Sapin2014-08-261-0/+0
|/
* Update ProxyTraps to use real bools.Ms2ger2014-08-261-0/+0
|
* Add https supportGlenn Watson2014-08-262-0/+0
|
* Temporarily revert rust-layers, as the most recent change broke the acid2 ↵Glenn Watson2014-08-251-0/+0
| | | | test on mac/travis.
* Update to latest rust-layersMartin Robinson2014-08-201-0/+0
| | | | This should reduce memory usage along layer boundaries.
* Merge pull request #3097 from mrobinson/pinch-zoom-delayMartin Robinson2014-08-171-0/+0
|\ | | | | Update rust layers and fix delay in pinch zoom
| * Update to latest rust-layersMartin Robinson2014-08-151-0/+0
| | | | | | | | | | We now need to pass through the content age of the LayerBuffer when creating it.
* | Update rust-azure to fix a dangling pointer bugBjörn Steinbrink2014-08-171-0/+0
| | | | | | | | Fixes #3084
* | Use Result/Err(()) instead of Option/None to indicate a CSS parse error.Simon Sapin2014-08-161-0/+0
|/
* Merge pull request #2274 from metajack/build-32bitJack Moffitt2014-08-147-2/+2
|\ | | | | Enable 32bit builds.
| * Enable 32bit builds.Jack Moffitt2014-08-147-2/+2
| | | | | | | | You specify a 32bit build by setting --target on configure.
* | Structured clone the argument to Worker.postMessage.Ms2ger2014-08-141-0/+0
|/
* Update rust-layers with android glsl fix.Glenn Watson2014-08-111-0/+0
|
* Upgrade Rust.Jack Moffitt2014-08-0819-3/+3
|
* Generate rustdoc documenation for submodules.Simon Sapin2014-08-0519-2/+15
|
* Revert the rust-mozjs changes to support threadsafe SpiderMonkey.Ms2ger2014-08-031-0/+0
| | | | | These changes were integrated accidentally, and now cause segfaults during conservative stack scanning.
* Upgrade Rust.Jack Moffitt2014-08-0223-1/+53
|
* Update to rust-layers masterMatt Brubeck2014-08-011-0/+0
| | | | Fixes accidental revert of servo/rust-layers#92.
* Push get_buffer_requests_recursively into rust-layersMartin Robinson2014-07-311-0/+0
| | | | | Also do some reorganization and abstraction in IOCompositor now that we do not have to borrow self.scene.root.
* Update to latest rust-layersMatt Brubeck2014-07-301-0/+0
|
* Merge pull request #2946 from glennw/update-layersCameron Zwarich2014-07-291-0/+0
|\ | | | | Bump submodule ptr to get texture filter fixes in rust-layers.
| * Bump submodule ptr to get texture filter fixes in rust-layers.Glenn Watson2014-07-291-0/+0
| |
* | Implement the delete proxy trap (fixes #2213).Sankha Narayan Guria2014-07-291-0/+0
|/
* Layer bounds and buffer requests should use layer coordinatesMartin Robinson2014-07-281-0/+0
| | | | | | | | Instead of passing a scaling factor down to rust-layers and keeping all layers in page coordinates, work in layer coordinates. This is much more natural, as the compositor and rust-layer should really need to care about any potential contents zoom. It will also allow us to move more code into rust-layers in a later commit.
* Merge pull request #2922 from servo/rustdocSimon Sapin2014-07-251-0/+0
|\ | | | | Build rustdoc docs on Travis and upload them to GitHub Pages.
| * Add doc and doc-$(crate) targets to the Makefile using rustdoc.Simon Sapin2014-07-251-0/+0
| |
* | Update to latest string-cache.Matt Brubeck2014-07-241-0/+0
| | | | | | | | Includes fix for servo/string-cache#4.
* | Add explicit cast from size_t to u64.Matt Brubeck2014-07-241-0/+0
|/ | | | Fixes compile error on non-64-bit targets.
* Add support for showing debug bordersMartin Robinson2014-07-231-0/+0
| | | | | This can help debug issues with the compositor and show when a page is creating layers.
* Merge pull request #2884 from glennw/linux-kerningglennw2014-07-241-0/+0
|\ | | | | Implement kerning support for linux/android.
| * Implement kerning support for linux/android. Improves some wikipedia issues ↵Glenn Watson2014-07-241-0/+0
| | | | | | | | (#2554).
* | Bump submodules for azure/skia with fixes for xvfb.Glenn Watson2014-07-232-0/+0
| |
* | Bump submodule ptr for rust-url to fix make-check error.Glenn Watson2014-07-221-0/+0
| |
* | Start dogfooding rust-url. Fix #1673.Simon Sapin2014-07-211-0/+0
| |
* | Add rust-url as a submodule and a Makefile for it.Simon Sapin2014-07-213-0/+29
|/
* Update to reflect rust-layers changesMartin Robinson2014-07-181-0/+0
| | | | | It is no longer necessary to flush pending buffer requests when adding buffers nor to manually create textures for layers.
* Rename Scene constructor to Scene::newCameron Zwarich2014-07-161-0/+0
|
* Changes reflecting the latest version of rust-layersMartin Robinson2014-07-161-0/+0
| | | | | | The Tile trait has been removed and TileGrid now keeps Tile structs with Textures embedded instead of simply buffers. rust-layers now creates its own textures instead of relying on Servo to do it.
* Changes to support latest rust-layersMartin Robinson2014-07-152-0/+0
| | | | | Now tiles are stored in TileGrid and layer methods are simple instance methods.
* Add stringcache to build, now that phf is working on androidGlenn Watson2014-07-141-0/+0
|
* Update the rust-mozjs submodule pointer.Ms2ger2014-07-131-0/+0
|
* Enable rust-phf build and bump rust-phf submodule ptr.Glenn Watson2014-07-111-0/+0
|
* Update to latest rust-layersMartin Robinson2014-07-091-0/+0
|
* Update to latest rust-layersMartin Robinson2014-07-091-0/+0
| | | | | Layers now store their complete boundaries, so we can eliminate the various ways these were stored in Servo.