summaryrefslogtreecommitdiff
path: root/scripts
Commit message (Collapse)AuthorAgeFilesLines
* [build] convert build-version script from Python to Node.jsKonstantin Käfer2016-08-162-81/+81
|
* [build] remove unused scriptKonstantin Käfer2016-08-161-20/+0
|
* [build] convert build-shaders script from Python to Node.jsKonstantin Käfer2016-08-162-76/+71
|
* [build] Re-enable coverage runBruno de Oliveira Abinader2016-08-051-3/+3
|
* [build] Fix 'make tidy' on linuxBruno de Oliveira Abinader2016-08-051-8/+7
|
* [build] Re-enable Qt botsThiago Marcos P. Santos2016-08-051-0/+2
|
* [build] Use cxx11abi suffix when neededThiago Marcos P. Santos2016-08-051-3/+3
|
* [build] switch to CMakeKonstantin Käfer2016-08-054-2/+48
| | | | This is very much a work in progress.
* [core] make code generator produce GL-compatible colorsKonstantin Käfer2016-07-071-1/+8
| | | | this makes sure colors are premultiplied and the RGB values are in the 0..1 range rather than in the 0..255 range.
* [build] Fix for `tidy` outputBruno de Oliveira Abinader2016-07-011-3/+3
|
* [build] Added 'lint' Make targetBruno de Oliveira Abinader2016-07-012-35/+66
|
* [core, node] Implement bindings for addLayerJohn Firebaugh2016-06-241-2/+2
|
* [core] Autogenerate Shader nameBruno de Oliveira Abinader2016-06-201-0/+5
|
* Color class (#5361)Young Hahn2016-06-151-1/+1
| | | | | | * Color class * Switch to list initialization
* [tidy] Switched to Travis CIBruno de Oliveira Abinader2016-06-141-2/+3
| | | | Fixes https://github.com/mapbox/mapbox-gl-native/issues/5341.
* [tidy] Install mason clang-tidy if CLANG_TIDY is not setBruno de Oliveira Abinader2016-06-141-1/+1
| | | | Also added HeaderFilterRegex to .clang-tidy.
* [macos] Renamed OS X SDK to macOS SDKMinh Nguyễn2016-06-141-1/+1
| | | | Also renamed as many references to OS X as possible to macOS in documentation.
* [node] Partial implementation of runtime styling API for node bindingsJohn Firebaugh2016-06-131-6/+11
|
* [core] Extract code templates to individual .ejs filesJohn Firebaugh2016-06-131-275/+4
|
* [tidy] Bail out when a warning/error is foundBruno de Oliveira Abinader2016-06-131-1/+14
|
* [build] Re-enable tidy checksBruno de Oliveira Abinader2016-06-131-11/+6
|
* [tidy] Check llvm-namespace-commentBruno de Oliveira Abinader2016-06-131-1/+1
| | | | Ref: http://clang.llvm.org/extra/clang-tidy/checks/llvm-namespace-comment.html
* text-pitch-alignment (#5288)Young Hahn2016-06-101-3/+7
| | | | | | | | | | | | * First pass at port of https://github.com/mapbox/mapbox-gl-js/pull/2668 * RotationAlignmentType => AlignmentType * Handle undefined default value for text-pitch-alignment and implement inheritance for this value from text-rotation-alignment * Update dependencies * Move handling fo undefined default value out of camelize functions
* [build] Update compdb & tidy for Linux & OS XBruno de Oliveira Abinader2016-06-101-0/+5
|
* [Qt][build] Updated valgrind supression and make it a target for QtThiago Marcos P. Santos2016-06-092-34/+141
|
* [linux] Mesa 11.2.2 (#5290)John Firebaugh2016-06-081-2/+2
|
* [core] Include type in #pragmasBruno de Oliveira Abinader2016-06-071-16/+10
| | | | Part of https://github.com/mapbox/mapbox-gl-shaders/pull/13.
* [core] Renamed OutlineShader's color uniformBruno de Oliveira Abinader2016-06-071-3/+2
| | | | Part of https://github.com/mapbox/mapbox-gl-shaders/issues/8.
* [core] Revert line-round-limit default to 1 (#5260)John Firebaugh2016-06-061-0/+5
| | | Refs #5258, #5234.
* Ensure version tag always has 3 parts. (#5225)Max Vilimpoc2016-06-031-0/+6
|
* [core] Rationalize naming for style-related codeJohn Firebaugh2016-06-021-15/+25
|
* [core] Add Filter accessorsJohn Firebaugh2016-06-021-0/+14
|
* [core] Introduce PropertyValue<T>John Firebaugh2016-06-021-15/+17
| | | | PropertyValue<T> represents the three possible types of style property value: undefined, constant, or function.
* [core] Runtime style layer APIJohn Firebaugh2016-06-021-0/+346
|
* [core] Support "#pragma mapbox:" commands in shader codeBruno de Oliveira Abinader2016-06-021-0/+29
| | | | Fixes https://github.com/mapbox/mapbox-gl-native/issues/5174.
* [core] use #pragma once instead of ifdef include guardsKonstantin Käfer2016-05-252-11/+5
|
* [build] Restrict C++11 ABI check script for LinuxBruno de Oliveira Abinader2016-05-241-0/+5
|
* [build] Inline main.mk Android targets into MakefileJohn Firebaugh2016-05-231-66/+0
|
* [build] Inline main.mk linux and qt targets into MakefileJohn Firebaugh2016-05-231-58/+0
|
* [build] Inline main.mk node targets into MakefileJohn Firebaugh2016-05-231-25/+0
|
* [build] Simplify control flow in main.mkJohn Firebaugh2016-05-231-44/+29
|
* [build] Remove unnecessary exported variablesJohn Firebaugh2016-05-231-8/+8
|
* [build] Avoid variable name coupling between main.mk and configureJohn Firebaugh2016-05-231-27/+25
|
* [build] Avoid variable name coupling between main.mk and clang-tidy.shJohn Firebaugh2016-05-232-2/+4
|
* [build] Avoid variable name coupling between main.mk and collect-coverage.shJohn Firebaugh2016-05-232-9/+11
|
* [build] Avoid variable name coupling between main.mk and configure.shJohn Firebaugh2016-05-231-1/+0
|
* [build] Fix broken build on OSXThiago Marcos P. Santos2016-05-101-1/+0
|
* [Qt] Use C++11 ABI packagesThiago Marcos P. Santos2016-05-103-0/+16
| | | | | | These were causing linking errors on more recent Linux distros. Fixes #3123.
* [build] Fix parallel 'make linux' callBruno de Oliveira Abinader2016-05-041-0/+1
|
* [build] Move Qt version define to configure.shBruno de Oliveira Abinader2016-04-271-3/+0
|