summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* [core] Increase pitch limit to 80 degreesupstream/tilecover-updatesBruno de Oliveira Abinader2017-06-162-6/+14
|
* [core] Reserve memory for tileCover container elementsBruno de Oliveira Abinader2017-06-162-12/+19
|
* [core] tileCover zoom is uint8_tBruno de Oliveira Abinader2017-06-162-19/+19
|
* [ios] add OpenGL.framework to enable the OpenGL ES debugger by defaultKonstantin Käfer2017-06-151-0/+4
|
* [tests] Enable set-style-* integration testsJohn Firebaugh2017-06-152-0/+5
|
* [core] Implement "smart setStyle"John Firebaugh2017-06-152-139/+38
|
* [core] Obey "transition" property from style and its default valueJohn Firebaugh2017-06-156-4/+22
|
* [core] Skip calculations when we already know we need rendering or layoutJohn Firebaugh2017-06-151-3/+4
|
* [ios] Sprite images no longer limitedMinh Nguyễn2017-06-141-1/+0
| | | The total size of the sprite sheet is no longer limited as it was before. This change updates the guide that helps developers choose between the different annotation mechanisms.
* [core] Eliminate constant attribute bindingsJohn Firebaugh2017-06-146-229/+76
| | | | Rather than binding constant attributes that will never be used, just disable the attribute.
* [core] rename a_gap_width => a_gapwidth, u_gap_width => u_gapwidth to ↵Konstantin Käfer2017-06-143-3/+3
| | | | | | reflect naming in the shader not sure how this ever worked
* [core] Remove unused SymbolPropertyValues membersJohn Firebaugh2017-06-142-10/+0
|
* [core] Don't use "current" icon/text-size when bindingJohn Firebaugh2017-06-142-17/+5
| | | | | | The current value is not passed to `SymbolSizeBinder::uniformValues`, so we shouldn't check `currentValue.isConstant()` in `SymbolSizeBinder::attributeBindings`. If it were true, then we might end up using attribute bindings that are appropriate only for a constant property, but uniform bindings that are appropriate only for a source or composite function. Instead, just wait for a new bucket to be generated. This will happen automatically, since icon/text-size are layout properties.
* [glfw] Added extrusions (E) and route (R) shortcutsBruno de Oliveira Abinader2017-06-145-1/+206
|
* [core] Add constsJohn Firebaugh2017-06-131-3/+3
|
* [core] Don't upload the FrameHistory texture in frames where it's not changingJohn Firebaugh2017-06-131-6/+6
|
* [core] Dynamic program compilation for data-driven propertiesJohn Firebaugh2017-06-1319-70/+148
|
* [core] cleanup ProgramParametersKonstantin Käfer2017-06-137-33/+46
|
* [core] add constant DDS values as uniformsKonstantin Käfer2017-06-133-4/+23
|
* [core] add uniforms to DataDrivenPaintPropertysKonstantin Käfer2017-06-137-30/+48
|
* [core] add shader defines for enabling/disabling attributes/uniforms for DDSKonstantin Käfer2017-06-1313-41/+708
|
* [core] only bind uniforms that exist in the programKonstantin Käfer2017-06-131-1/+1
|
* [core] verify that the active uniform types match our assumed typesKonstantin Käfer2017-06-133-0/+144
|
* [core] store vertex attribute binding to prevent duplicate bindsKonstantin Käfer2017-06-131-0/+1
| | | | | | | | | We have an "oldBinding" value that we use for checking whether the vertex attribute was already bound to the current VAO, but we never set the state. Additionally, we're also checking whether the previous state was already any binding (optional is set), and don't re-enable the vertex attribute array. Additionally, we now only disable the vertex attribute array when the previous state was in fact an array attribute. We still don't deduplicate constant glVertexAttrib* calls, but that's a little trickier.
* [core] Update to shelf-pack 2.1.0John Firebaugh2017-06-133-11/+11
|
* [core] Remove unused binpack.hpppJohn Firebaugh2017-06-134-156/+0
|
* [core] Per-tile glyph/icon atlasesJohn Firebaugh2017-06-1320-161/+223
|
* [tests] Test updating icon and pattern imagesJohn Firebaugh2017-06-133-2/+5
|
* [core] Per-bucket icon atlasesJohn Firebaugh2017-06-1355-728/+688
|
* [core] Per-bucket glyph atlasesJohn Firebaugh2017-06-1336-474/+409
|
* [core] glPixelStorei is in OpenGL ES 2John Firebaugh2017-06-135-52/+47
|
* [core] Merge RenderLayer::uploadBuckets into RenderSource::startRenderJohn Firebaugh2017-06-1313-35/+41
|
* [core] Parallelism in {start,finish}Render parametersJohn Firebaugh2017-06-1317-73/+42
|
* [core] Reduce number of varyings to 8 or lessJohn Firebaugh2017-06-136-83/+73
| | | | For #pragmas, don't generate varyings for attributes that aren't used by the fragment shader. Pack other varyings more tightly.
* [android] - snapshot bitmap contains view based content (#9252)Tobrun2017-06-132-4/+45
|
* [core] Added Backend::{assume,set}ScissorTestBruno de Oliveira Abinader2017-06-139-2/+46
|
* [core] Added Backend::{assume,set}ViewportBruno de Oliveira Abinader2017-06-137-17/+18
|
* [core] mutex guard annotation manager for cross thread usageIvo van Dongen2017-06-132-10/+32
|
* [core] - bump earcut version dependency to handle unused lamba warning (#9242)Tobrun2017-06-121-1/+1
|
* [build] try out Android NDK 15 beta 2Konstantin Käfer2017-06-121-2/+2
|
* Fix undefined memory access in getCoveringRanges() (#9227)Anand Thakker2017-06-094-4/+67
| | | | | | | | | | | | * Add simple unit tests for SymbolSizeBinder * Fix bug in symbol size uniform value calculation For camera functions we were setting the zoom levels in "covering ranges" to `[(zoom stop <= tile zoom), (zoom stop >= 1 + tile zoom)]`, but then evaluating the function at `[tile_zoom, tile_zoom + 1]`. * Check for it != end() before accessing it->first
* [glfw] Assume implicit backend in GLFWView::onFramebufferResizeBruno de Oliveira Abinader2017-06-081-0/+2
|
* [ios] Bench should be run in Release configurationJohn Firebaugh2017-06-071-1/+1
|
* fix #8300 flyTo for close points (#9199)Ansis Brammanis2017-06-061-10/+7
| | | | | | | | | | | | | | The isClose threshold is switched from 0.000001 pixels to 1 pixel. As a backup, it checks whether r0 and r1 are finite. It might be possible to have just the threshold check or just the finiteness check, but I don't see the harm in having both. std::abs(w0 - w1) < 0.000001 is removed because it doesn't look like it's needed. All calculations should run fine even if w0 === w1. Finally, the point interpolation is tweaked so that at the end of the flying (when k === 1) it ends up at the exact end point. I didn't see any bugs related to this, but it seems like a good thing to have explicitly.
* [node] bump version (#9196)node-v3.5.4Bobby Sudekum2017-06-062-1/+5
|
* [android] - remove upgrade runtime exceptions (#9191)Tobrun2017-06-061-16/+2
|
* [docs] Update ARCHITECTURE.md for immutability and RenderStyle splitJohn Firebaugh2017-06-051-6/+40
|
* [core] Named members for diff before/afterJohn Firebaugh2017-06-053-5/+12
|
* [core] Collection-level immutabilityJohn Firebaugh2017-06-0513-139/+254
| | | | Introduce a second level of immutability, over each of the collections held by a style: sources, images, and layers. Tracking immutability at this level allows us to short-circuit significant portions of the RenderStyle update logic via a simple equality check, greatly improving performance.
* [core] Don't share TransformState referenceJohn Firebaugh2017-06-052-5/+5
|