summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* [android] - rewire gesture handling and telemetry event push (#9494)Tobrun2017-07-171-64/+57
|
* [node] Bump version to 3.5.5Bruno de Oliveira Abinader2017-07-142-1/+4
|
* [build] Publish node packages with RelWithDebInfoBruno de Oliveira Abinader2017-07-146-8/+13
|
* [core] Make sure ThreadLocal will not own the pointer it is managingThiago Marcos P. Santos2017-07-144-20/+29
| | | | | | | | | | | | | | ThreadLocal should not own the pointer it is managing because the use case in Mapbox GL is to keep a pointer to a stack allocated object, like: ``` MyObject foo; threadLocal.set(&foo); ``` To keep consistency, it is required that we clear the managed object before ThreadLocal gets destroyed by setting it to `nullptr`.
* [test] Fix undefined behavior warning:Chris Loer2017-07-141-2/+2
| | | | | quads.test.cpp used a bin with unsupported x/y coordinates. Issue #9499.
* [core] add unused default template parameter to keep Xcode 9's Clang from ↵Konstantin Käfer2017-07-131-0/+6
| | | | crashing
* [core] fix division by zero when defaultFadeDuration is 0Konstantin Käfer2017-07-131-1/+4
|
* [core] fix undefined access for HTTP responses that don't contain a bodyKonstantin Käfer2017-07-131-2/+2
|
* [build] upload cache on Circle CI before running testsKonstantin Käfer2017-07-131-11/+12
|
* [build] add ccache + Circle CI cachingKonstantin Käfer2017-07-135-315/+279
|
* [build] add address, undefined behavior + thread sanitizerKonstantin Käfer2017-07-133-4/+151
|
* [build] upgrade to v4 CircleCI images that have logbt/mesa/gdb/apitrace ↵Konstantin Käfer2017-07-134-354/+33
| | | | installed
* [Qt] Fix docs warningsThiago Marcos P. Santos2017-07-132-6/+6
|
* [Qt] Share the DefaultFileSource for all QMapboxGL instancesThiago Marcos P. Santos2017-07-132-2/+20
| | | | | | Fix issues of concurrent access to the sqlite cache. Fixes #9108.
* [build] Update GLFW to 2017-07-13-67c9155Bruno de Oliveira Abinader2017-07-133-13/+2
|
* [build] enable -fvisibility=hidden for iOSKonstantin Käfer2017-07-138-5/+25
|
* [all] make default_styles header-onlyKonstantin Käfer2017-07-137-31/+8
|
* Update mapbox-gl-jsupstream/attribute-locationJohn Firebaugh2017-07-121-0/+0
|
* [android] Force previously cached program binaries to be regeneratedJohn Firebaugh2017-07-121-0/+1
|
* [core] Pass correct sources to programIdentifierJohn Firebaugh2017-07-121-10/+6
|
* [core] No need for optional in map of VertexArraysJohn Firebaugh2017-07-123-10/+9
|
* [core] Add comments explaining typing of AttributeLocation and UniformLocationJohn Firebaugh2017-07-121-0/+8
|
* [core] Reduce memory requirements of VertexArraysJohn Firebaugh2017-07-124-12/+34
|
* [core] Remove segment.cppJohn Firebaugh2017-07-122-8/+0
|
* [core] Use a type alias for SegmentVectorJohn Firebaugh2017-07-121-4/+1
|
* [core] Per-segment-per-layer vertex arraysJohn Firebaugh2017-07-1213-27/+61
| | | | Reduces rebinding, matches gl-js, and works around the buggy VAO implementation on PowerVR SGX544 GPUs.
* [core] Rework attribute binding (again)John Firebaugh2017-07-1232-313/+370
| | | | | | | | | | These changes are necessary for programs whose set of active attributes is not fixed at compile time by a template parameter pack, but rather varies based on the generated shader text at runtime. In such cases, the attribute location of a given named attribute may vary between instances of the same Program. Previously, attribute bindings were implicitly associated with a location based on template parameter order, and -1 was used to indicate an inactive attribute. This left us unable to disable the appropriate attribute when it went from active to inactive. Now, the state tracker for bindings explicitly associates locations and state, and an empty optional is used to indicate an inactive attribute. In addition, a gl::VertexArray class is now exposed, allowing more flexibility in the relationship between Programs, Segments, and attribute bindings. In this commit, that relationship does not change, but the subsequent commit adjusts it to match gl-js, reduce rebinds, and work around buggy VAO implementations. VertexArray uses a pimpl idiom in order to support implementations that lack the VAO extension. In that case, all VertexArrays share global binding state, reflecting the platform reality in the absence of VAOs, while still providing a uniform API.
* [core] Inline getActiveAttributes detailsJohn Firebaugh2017-07-121-25/+11
|
* [core] Include what you useJohn Firebaugh2017-07-123-1/+3
|
* [tests] Local ignores.json file for ignored integration testsJohn Firebaugh2017-07-124-8/+71
|
* [test] Pull in re-enabled tests from mapbox-gl-js.Chris Loer2017-07-121-0/+0
|
* [core] Update shaders.Chris Loer2017-07-1223-126/+466
| | | | | Implements 'icon-pitch-alignment' (issue #9345) Fixes issue #9456 (map-aligned point label regression)
* [test] Re-enable keep-upright test for pitched views.Chris Loer2017-07-121-0/+0
|
* [core] Base label "keep-upright" orientation on start and end of labelChris Loer2017-07-121-18/+76
| | | | Fixes issue #9457.
* [Qt] Do not return a valid mbgl::Annotation if conversion failsBruno de Oliveira Abinader2017-07-121-7/+7
|
* [core] GCC 4.9 bracket initialization issuesBruno de Oliveira Abinader2017-07-1216-65/+93
|
* [core] GCC 4.9 is unable to deduce ctors when using bracket initBruno de Oliveira Abinader2017-07-1215-25/+169
|
* [core] Added missing header includesBruno de Oliveira Abinader2017-07-121-0/+1
|
* [core] Added MBGL_CONSTEXPR to satisfy GCC 4.9Bruno de Oliveira Abinader2017-07-127-18/+32
|
* [core] GCC 4.9 does not provide <codecvt>Bruno de Oliveira Abinader2017-07-121-0/+10
|
* [core] GCC 4.9 shadow member warningsBruno de Oliveira Abinader2017-07-126-25/+25
|
* [core] GCC 4.9 does not fully support custom variable templatesBruno de Oliveira Abinader2017-07-128-24/+24
|
* [core] GCC 4.9 does not allow using another member in a constexpr ctorBruno de Oliveira Abinader2017-07-121-4/+4
|
* [build] Reuse precomputed WITH_CXX11ABI definition in Qt buildsBruno de Oliveira Abinader2017-07-121-2/+2
|
* [build] OSX build fix for GCC 4.9Bruno de Oliveira Abinader2017-07-121-1/+1
|
* [build] Added Linux GCC 4.9 CI botBruno de Oliveira Abinader2017-07-122-4/+46
|
* [core] add LLDB summaries for types we use commonlyKonstantin Käfer2017-07-121-0/+15
|
* [test] Add utest to assert our dtoa implementation precisionThiago Marcos P. Santos2017-07-122-0/+25
|
* [benchmark] Add a benchmark for our dtoa implementationThiago Marcos P. Santos2017-07-123-0/+69
| | | | | | | Make sure it is faster than std::to_value(). And it is, by ~30% for the normal use case, and much faster when close to the double limits. util::dtoa also offers a much better precision.
* [core] Do not use S_ISDIRThiago Marcos P. Santos2017-07-121-2/+1
| | | | Seems like Windows can do `stat()` but not S_ISDIR.