aboutsummaryrefslogtreecommitdiffstats
path: root/components/config/opts.rs
Commit message (Collapse)AuthorAgeFilesLines
...
* Make angle and disable-vsync embedder optionsglowe2019-10-261-30/+6
| | | | | | | | The angle and disable-vsync options were declared as global options but only used in the Glutin embedding for desktop builds. Moving them to the Glutin embedding code makes them easier to update. Partially fixes #23009
* Update euclid.Emilio Cobos Álvarez2019-07-231-5/+5
| | | | | | | | There are a few canvas2d-related dependencies that haven't updated, but they only use euclid internally so that's not blocking landing the rest of the changes. Given the size of this patch, I think it's useful to get this landed as-is.
* Script: removed a few opts::get()oneturkmen2019-06-261-1/+1
|
* Layout_thread: removed all possible opts::get()oneturkmen2019-06-041-1/+2
|
* Constellation: removed almost all opts::getoneturkmen2019-06-031-0/+1
|
* Add ANGLE support to default embedding.Josh Matthews2019-05-091-0/+11
|
* #8539 Config preferences backend restructurePeter Hall2019-03-201-29/+25
|
* Fix deprecation warningsSimon Sapin2019-01-281-2/+2
|
* Rustfmt has changed its default style :/Simon Sapin2018-12-281-9/+11
|
* Allow resetting optionsPaul Rouget2018-11-221-29/+9
|
* Update MPL license to https (part 4)Jan Andre Ikenmeyer2018-11-191-1/+1
|
* Remove useless `use crate_name;` imports.Simon Sapin2018-11-081-1/+0
| | | | A `crate_name::foo` path always works in 2018
* Auto merge of #22126 - pyfisch:autoformat, r=jdmbors-servo2018-11-071-4/+7
|\ | | | | | | | | | | | | | | Enforce rustfmt on CI <!-- Reviewable:start --> This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/22126) <!-- Reviewable:end -->
| * Reorder importsPyfisch2018-11-061-1/+1
| |
| * Format remaining filesPyfisch2018-11-061-3/+6
| |
* | Auto merge of #22119 - atouchet:ua, r=paulrougetbors-servo2018-11-061-7/+7
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update Firefox version in user agent string <!-- Please describe your changes on the following line: --> GitHub is again limiting functionality in Servo due to using an outdated Firefox version in the user agent string. Updating this should get rid of the warning. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [ ] `./mach build -d` does not report any errors - [ ] `./mach test-tidy` does not report any errors - [ ] These changes fix #__ (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/22119) <!-- Reviewable:end -->
| * Bump Firefox version in user agent stringAlex Touchet2018-11-051-7/+7
| |
* | Sort `use` statementsSimon Sapin2018-11-061-1/+1
| |
* | `cargo fix --edition`Simon Sapin2018-11-061-1/+1
| |
* | Count threads at shutdown and warn if not all finishedPaul Rouget2018-11-061-0/+10
|/
* Add lots of derived Debug implsAlan Jeffrey2018-10-291-2/+2
|
* Disable subpixel text antialiasing for ServoSurfacePaul Rouget2018-10-061-1/+6
|
* Format components config #21373kingdido9992018-09-021-153/+333
|
* delegate resource reading to embedderPaul Rouget2018-04-271-3/+7
|
* Update WR (accelerated webgl fix on mac, line decoration optimizations).Glenn Watson2018-03-231-9/+0
|
* Update the MULTIPROCESS static when changing default optionsFabrice Desré2018-03-151-0/+3
|
* remove mozbrowser codePaul Rouget2018-02-131-1/+1
|
* Use specific negative assertion for config optsCYBAI2018-01-261-1/+1
|
* Remove unused -t command-line flagMatt Brubeck2017-11-101-1/+0
|
* Fix commonmark Markdown warnings in docs, part 1Matt Brubeck2017-10-171-2/+3
| | | | | | | | Fixes warnings from rust-lang/rust#44229 when `--enable-commonmark` is passed to rustdoc. This is mostly a global find-and-replace for bare URIs on lines by themselves in doc comments.
* enable antialiasing by defaultPaul Rouget2017-08-291-3/+3
|
* Silenced camel case warning for the iOS enum variantMoses Miller2017-08-251-0/+1
|
* Added initial iOS User-AgentJonathan Jayet2017-08-231-2/+10
|
* Update Firefox version in user agentAlex Touchet2017-08-101-6/+6
|
* Implement basic Time To First Paint and First Contentful Paint PWMsFernando Jiménez Moreno2017-07-201-0/+6
|
* Add option to write profiler output to InfluxDBFernando Jiménez Moreno2017-07-031-4/+21
|
* Bump euclid to 0.14.Nicolas Silva2017-06-141-1/+1
|
* Pass URL to Browser::new(), delegate url checking logic to third partySadman Kazi2017-06-081-14/+8
| | | | | | | | | | | | | | | | Use Option instead of ServoUrl for url in opts Cleaner mapping from parse_url to url_opt Add comment about url parsing error Print reason for parsing error Remove comment about warning Add home url when openning new browser window in CEF Fix merge error
* Fix the -Z wr-no-batch option.Glenn Watson2017-05-241-3/+3
| | | | | | | | The DebugOpts struct uses the Default trait to set all the values to false initialily. So bools in the DebugOpts struct must be negative verbs to work correctly. This drops the draw call count on HN from ~2000 back to ~5.
* -Z wr-no-batch optionDzmitry Malyshau2017-05-191-0/+10
|
* Not headless by defaultPaul Rouget2017-05-171-1/+1
|
* Remove unused debug optsPyfisch2017-05-101-32/+0
|
* Remove "Must be used with -w option" notePyfisch2017-05-101-2/+2
|
* Enable subpixel anti-aliasing on text by default.Glenn Watson2017-05-081-5/+5
| | | | | | | | No doubt there are still some bugs and missing features related to subpixel text anti-aliasing. But enabling by default should allow us to detect these and fix them. If we run into any major issues, this is a standalone commit that can be reverted while we fix the problem.
* Remove obsolete paint threads option #16716zombiefungus2017-05-071-14/+0
|
* Unminify JS and dump it to a file before executing itFernando Jiménez Moreno2017-04-121-0/+6
|
* Remove the show-compositor-borders debug optionMartin Robinson2017-04-111-10/+0
| | | | | | This was used by the old compositor of which only the ghostly echoes of old commits remain. Since it's been unused for quite some time, it is probably safe to remove it.
* Remove servo feature from servo_configXidorn Quan2017-04-071-4/+2
|
* Add command-line argument to use a custom SSL certificate database.Josh Matthews2017-04-061-0/+6
|
* Rename ScreenPx to DeviceIndependentPixel.Glenn Watson2017-02-221-2/+2
|