You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGES.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,11 +15,14 @@
15
15
- Added `element_type` to `IntrusivePointer`, allowing it to be used with `std::pointer_types`.
16
16
- Added implicit conversion of `IntrusivePointer<T>` to `T*`.
17
17
- All properties and extensions from `tileset.json`, except `"root"`, are now parsed into `TilesetMetadata` when a tileset is loaded by `Cesium3DTilesSelection::Tileset`.
18
+
- Added `accessorView` to `PropertyAttributePropertyView` to retrieve the underlying `AccessorView`.
18
19
19
20
##### Fixes :wrench:
20
21
21
22
- Fixed a bug in `Tileset::updateViewGroupOffline` that would cause it to get stuck in an endless loop when invoked with no frustums.
22
23
- Fixed `ColorMode::Random` in `VectorStyle` producing different results each time a raster overlay tile was rendered.
24
+
- Fixed a bug in `IonRasterOverlay` that would cause unnecessary extra use of Bing Maps sessions when manually reloading the raster overlay after an expired token was automatically refreshed.
25
+
- Fixed a bug that could lead to a crash when using raster overlays with tilesets that use "external tilesets", such as Google Photorealistic 3D Tiles.
Copy file name to clipboardExpand all lines: cmake/detect-vcpkg-triplet.cmake
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -39,8 +39,11 @@ elseif(APPLE)
39
39
endif()
40
40
endif()
41
41
elseif(LINUX)
42
-
# Assuming x64 here isn't necessarily correct, but it's the only platform we officially support.
43
-
set(DETECTED_VCPKG_TRIPLET "x64-linux")
42
+
if(CMAKE_SYSTEM_PROCESSORSTREQUAL"arm64")
43
+
set(DETECTED_VCPKG_TRIPLET "arm64-linux")
44
+
else()
45
+
set(DETECTED_VCPKG_TRIPLET "x64-linux")
46
+
endif()
44
47
else()
45
48
set(DETECTED_VCPKG_TRIPLET_ERROR "Cannot guess an appropriate value for VCPKG_TRIPLET because the operating system is unknown. Please set it manually.")
0 commit comments