summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | [core] add error for non-virtual destructor deletes + add virtual dtorsKonstantin Käfer2017-05-185-4/+10
| |
* | [core] Make destructor virtual to avoid object splicing during destructionKonstantin Käfer2017-05-181-0/+1
| |
* | [core] Throttle tiles to redo symbol placement at most once every 300ms.Chris Loer2017-05-175-2/+74
| | | | | | | | Fixes issue #8435 and prepares for pitch-scaling changes in issue #8967.
* | [core] Remove redundant SpriteAtlasElement membersJohn Firebaugh2017-05-174-22/+18
| |
* | [core] Remove ambiguous get{Width,Height} accessors from style::ImageJohn Firebaugh2017-05-177-34/+8
| |
* | [core] Remove obsolete modular arithmetic on atlas coordinatesJohn Firebaugh2017-05-176-27/+14
| | | | | | | | We switched to 16-bit coordinates in attributes in b0cb8715ed74678b4d0f05829fa71a590e41b2f6, so there's no longer any reason to require that they are divisible by four.
* | [core] Remove WorkQueueJohn Firebaugh2017-05-176-141/+0
| | | | | | | | No longer used as of 5cdf838a387cae446dba500ac49a1c5524bf7949.
* | [build] Use gdb 2017-04-08-aebcde5Bruno de Oliveira Abinader2017-05-173-7/+8
| |
* | [core, node, darwin, android, qt] Make image ID part of ImageJohn Firebaugh2017-05-1641-185/+176
| | | | | | | | More like Source and Layer.
* | [build] Use workflows instead of a trigger buildKonstantin Käfer2017-05-161-13/+7
| |
* | [test] Update gl-js submoduleJohn Firebaugh2017-05-151-0/+0
| |
* | Update README.mdjingsam2017-05-151-3/+3
| |
* | [core] mbgl-render: allow scale factor to be floating point numberRoman Chichina2017-05-151-2/+3
| |
* | [qt] Un-deprecate QMapboxGL::setTransitionOptionsJohn Firebaugh2017-05-151-5/+2
| | | | | | | | It's still relevant for runtime-styling driven paint property changes.
* | [core, node, darwin, qt] Remove support for paint classesJohn Firebaugh2017-05-1552-1418/+930
| |
* | [core] cascade ⇢ transition / cascading ⇢ transitionableJohn Firebaugh2017-05-1543-85/+86
| |
* | [core] Unify {Paint,Layout,Light}PropertiesJohn Firebaugh2017-05-1566-576/+494
| |
* | [core] *LayerImpl::cascading ⇢ paintJohn Firebaugh2017-05-1523-262/+262
| |
* | [core] Merge light_properties.hpp into light_impl.hppJohn Firebaugh2017-05-155-55/+43
| |
* | [core] Immutable<Impl> for ImageJohn Firebaugh2017-05-158-40/+40
| |
* | [core] Trim StyleObserver interfaceJohn Firebaugh2017-05-136-38/+34
| | | | | | | | It doesn't need to inherit from SpriteLoaderObserver and GlyphAtlasObserver.
* | [core] Move renderer/* files into sub-folders (#8983)Asheem Mamoowala2017-05-1254-117/+123
| | | | | | Move renderer/* files into sub-folders
* | [build] Rotate AWS credentialsJohn Firebaugh2017-05-121-2/+2
| |
* | [core] Split style image collection from SpriteAtlasIvo van Dongen2017-05-1233-414/+678
| |
* | [linux] loop-uv depends on mbgl-core for linkingJohn Firebaugh2017-05-123-2/+7
| |
* | [core] Replace createRender{Source,Layer} with Render{Source,Layer}::createJohn Firebaugh2017-05-1243-117/+91
| | | | | | | | | | * Eliminates the need for EnableImmutableFromThis * Eliminates the dependency of {Source,Layer}::Impl on corresponding Render class (circular dependency)
* | [core] Return {Source,Layer}::getID by valueJohn Firebaugh2017-05-124-4/+4
| | | | | | | | | | | | | | | | | | | | Avoid dangling references in the following sequence: auto& id = layer->getID(); layer->setMaxZoom(2); std::cout << id; The reference would be dangling because mutating the layer allocates a new Immutable impl, and there may be no references to the prior impl, which held the id.
* | [core] Remove unused RenderLayer::cloneJohn Firebaugh2017-05-1217-51/+0
| |
* | [core] Immutable ImplsJohn Firebaugh2017-05-12124-1485/+2590
| |
* | [build] Don't run Travis 'check' build on masterBruno de Oliveira Abinader2017-05-122-1/+4
| |
* | [build] Explicitely set Clang as compiler in 'check' Travis CI buildBruno de Oliveira Abinader2017-05-121-3/+4
| |
* | [tidy] modernize-make-uniqueBruno de Oliveira Abinader2017-05-121-1/+1
| |
* | [tidy] modernize-loop-convertBruno de Oliveira Abinader2017-05-123-9/+9
| |
* | [tidy] modernize-deprecated-headersBruno de Oliveira Abinader2017-05-123-3/+3
| |
* | [tidy] modernize-raw-string-literalBruno de Oliveira Abinader2017-05-128-25/+25
| |
* | [tidy] modernize-pass-by-valueBruno de Oliveira Abinader2017-05-126-13/+19
| |
* | [tidy] modernize-use-emplaceBruno de Oliveira Abinader2017-05-122-3/+3
| |
* | [tidy] modernize-use-equals-defaultBruno de Oliveira Abinader2017-05-126-12/+7
| |
* | [tidy] modernize-use-nullptrBruno de Oliveira Abinader2017-05-123-16/+16
| |
* | [tidy] modernize-use-bool-literalsBruno de Oliveira Abinader2017-05-121-1/+1
| |
* | [tidy] modernize-use-overrideBruno de Oliveira Abinader2017-05-124-4/+4
| |
* | [tidy] modernize-use-default-member-initBruno de Oliveira Abinader2017-05-123-13/+10
| |
* | [tidy] modernize-use-usingBruno de Oliveira Abinader2017-05-1213-38/+67
| |
* | [tidy] modernize-use-autoBruno de Oliveira Abinader2017-05-1225-50/+49
| |
* | [tidy] llvm-namespace-commentBruno de Oliveira Abinader2017-05-1213-14/+14
| |
* | [core] Removed unused namedColorCountBruno de Oliveira Abinader2017-05-121-3/+0
| | | | | | | | warning: unused variable 'namedColorCount' [clang-diagnostic-unused-const-variable]
* | [core] Make deleted members publicBruno de Oliveira Abinader2017-05-122-7/+9
| | | | | | | | warning: deleted member function should be public [modernize-use-equals-delete]
* | [core] Explicitly use mbgl::optional in IdentityStops::evaluateBruno de Oliveira Abinader2017-05-121-2/+3
| | | | | | | | | | | | error: call to constructor of 'optional<std::array<float, 2> >' (aka 'std::experimental::fundamentals_v1::optional<std::array<float, 2> >') is ambiguous [clang-diagnostic-error]
* | [core] Avoid calling virtual GeometryTile::cancel() on dtorBruno de Oliveira Abinader2017-05-122-1/+7
| | | | | | | | | | warning: Call to virtual function during destruction will not dispatch to derived class [clang-analyzer-optin.cplusplus.VirtualCall]
* | [tidy] Disable clang-analyzer-core.{NullDereference,NonNullParamChecker}Bruno de Oliveira Abinader2017-05-121-1/+1
| | | | | | | | This caused unrelated issues coming from rapidjson headers.