// This file was generated by generate-classes. // DO NOT EDIT THIS FILE! #pragma once #include #include #include namespace CesiumGltf { /** * @brief Compressed data for SPZ v2 primitive. */ struct CESIUMGLTF_API ExtensionKhrGaussianSplattingCompressionSpz2 final : public CesiumUtility::ExtensibleObject { /** * @brief The original name of this type. */ static constexpr const char* TypeName = "ExtensionKhrGaussianSplattingCompressionSpz2"; /** @brief The official name of the extension. This should be the same as its * key in the `extensions` object. */ static constexpr const char* ExtensionName = "KHR_gaussian_splatting_compression_spz_2"; /** * @brief The index of the bufferView. */ int32_t bufferView = -1; /** * @brief Calculates the size in bytes of this object, including the contents * of all collections, pointers, and strings. This will NOT include the size * of any extensions attached to the object. Calling this method may be slow * as it requires traversing the object's entire structure. */ int64_t getSizeBytes() const { int64_t accum = 0; accum += int64_t(sizeof(ExtensionKhrGaussianSplattingCompressionSpz2)); accum += CesiumUtility::ExtensibleObject::getSizeBytes() - int64_t(sizeof(CesiumUtility::ExtensibleObject)); return accum; } }; } // namespace CesiumGltf