summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* fix pointerupstream/jrm-ios-image-source-hackJustin R. Miller2017-05-311-1/+1
|
* refs #1350, refs #8968: quick cut of iOS image source bindingsJustin R. Miller2017-05-256-0/+85
|
* Offline support for Image SourcesAsheem Mamoowala2017-05-1811-13/+64
|
* Fix code lint checksAsheem Mamoowala2017-05-183-8/+8
|
* Improve render transform to work in wrapped worldsAsheem Mamoowala2017-05-182-21/+47
|
* Incorporate review feedback: Whitespace, formatting, etcAsheem Mamoowala2017-05-189-12/+10
|
* Refactor for Immutable Source::ImplAsheem Mamoowala2017-05-1817-139/+181
|
* ImageSource ctor requires coordinates, but not image/urlAsheem Mamoowala2017-05-188-21/+30
|
* Code Review FeedbackAsheem Mamoowala2017-05-185-9/+9
|
* Add conversion method for iOS and AndroidAsheem Mamoowala2017-05-183-0/+24
|
* Fix render transforms for all zoom levelsAsheem Mamoowala2017-05-1812-41/+183
|
* [core] Fix quad duplication and vertex orderAsheem Mamoowala2017-05-182-12/+5
|
* Move renderer files to foldersAsheem Mamoowala2017-05-1826-115/+153
|
* Move rendering from Painter to RenderLayerAsheem Mamoowala2017-05-1822-29/+205
|
* Fill in more of ImageSource and RenderImageSourceAsheem Mamoowala2017-05-1813-43/+97
| | | | | Remove tile depdendence from raster painter Use getID() instead of direct access thru baseImpl
* Add parsed coordinates to ImageSource::ImplAsheem Mamoowala2017-05-187-46/+194
|
* Parse Image source based on Style spec. Includes unit tests for parsingAsheem Mamoowala2017-05-1818-7/+282
|
* [core][ios] Use explicit submodule update for ios target (#8973)Asheem Mamoowala2017-05-181-0/+6
| | | Closes #8750
* [core] Don't unnecessarily request glyphs for verticalized punctuation.Chris Loer2017-05-181-2/+7
| | | | Issue #8982.
* [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
|