-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into fix-api-url
- Loading branch information
Showing
130 changed files
with
4,472 additions
and
1,574 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#pragma once | ||
|
||
#include <Cesium3DTiles/BufferCesium.h> | ||
#include <Cesium3DTiles/BufferSpec.h> | ||
#include <Cesium3DTiles/Library.h> | ||
|
||
namespace Cesium3DTiles { | ||
/** @copydoc BufferSpec */ | ||
struct CESIUM3DTILES_API Buffer final : public BufferSpec { | ||
/** | ||
* @brief Holds properties that are specific to the 3D Tiles loader rather | ||
* than part of the 3D Tiles spec. | ||
*/ | ||
BufferCesium cesium; | ||
}; | ||
} // namespace Cesium3DTiles |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#pragma once | ||
|
||
#include <Cesium3DTiles/Library.h> | ||
|
||
#include <cstddef> | ||
#include <vector> | ||
|
||
namespace Cesium3DTiles { | ||
/** | ||
* @brief Holds {@link Buffer} properties that are specific to the 3D Tiles loader | ||
* rather than part of the 3D Tiles spec. | ||
*/ | ||
struct CESIUM3DTILES_API BufferCesium final { | ||
/** | ||
* @brief The buffer's data. | ||
*/ | ||
std::vector<std::byte> data; | ||
}; | ||
} // namespace Cesium3DTiles |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.