Skip to content

Commit

Permalink
Rename ImageAssetMipPosition
Browse files Browse the repository at this point in the history
  • Loading branch information
azrogers committed Oct 10, 2024
1 parent df1f887 commit 883e36f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CesiumGltf/include/CesiumGltf/Image.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ struct CESIUMGLTF_API Image final : public ImageSpec {
/**
* @brief Holds properties that are specific to the glTF loader rather than
* part of the glTF spec. When an image is loaded from a URL, multiple `Image`
* instances may all point to the same `ImageCesium` instance.
* instances may all point to the same `ImageAsset` instance.
*/
CesiumUtility::IntrusivePointer<ImageAsset> pCesium;
};
Expand Down
4 changes: 2 additions & 2 deletions CesiumGltf/include/CesiumGltf/ImageAsset.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace CesiumGltf {
/**
* @brief The byte range within a buffer where this mip exists.
*/
struct CESIUMGLTF_API ImageCesiumMipPosition {
struct CESIUMGLTF_API ImageAssetMipPosition {
/**
* @brief The byte index where this mip begins.
*/
Expand Down Expand Up @@ -67,7 +67,7 @@ struct CESIUMGLTF_API ImageAsset final
* biggest and etc. If this is empty, assume the entire buffer is a single
* image, the mip map will need to be generated on the client in this case.
*/
std::vector<ImageCesiumMipPosition> mipPositions;
std::vector<ImageAssetMipPosition> mipPositions;

/**
* @brief The pixel data.
Expand Down

0 comments on commit 883e36f

Please sign in to comment.