summaryrefslogtreecommitdiff
path: root/src/mbgl/style/expression/literal.cpp
Commit message (Collapse)AuthorAgeFilesLines
* [core] Convert "legacy" filters directly into expressions (#11610)Lucas Wojciechowski2018-05-101-0/+8
| | | Ports the specialized filter-* expressions from GL JS, adding them to src/mbgl/style/expression/compound_expression.cpp
* [core] Implement Expression::serialize()Chris Loer2018-02-281-0/+8
| | | | | | | | Issue #10714 - Each expression stores its operator as a string, and default serialization is [operator, serialize(child1), ...] - Custom implementations of `serialize` for Expression types that don't follow the pattern - expression::Value -> mbgl::Value converter - node_expression bindings to expose `serialize`
* [core] Fix build on Android + GCC and Android + armeabiThiago Marcos P. Santos2017-11-121-2/+2
| | | | Sadly we don't have bots for these two setups.
* Implement Expressions (#9439)Anand Thakker2017-11-081-0/+108
Ports https://github.com/mapbox/mapbox-gl-js/pull/4777 (and its several follow-ups)