初始提交: UE5.3项目基础框架
This commit is contained in:
53
Plugins/CesiumForUnreal/Source/ThirdParty/include/CesiumGltf/ExtensionExtInstanceFeatures.h
vendored
Normal file
53
Plugins/CesiumForUnreal/Source/ThirdParty/include/CesiumGltf/ExtensionExtInstanceFeatures.h
vendored
Normal file
@ -0,0 +1,53 @@
|
||||
// This file was generated by generate-classes.
|
||||
// DO NOT EDIT THIS FILE!
|
||||
#pragma once
|
||||
|
||||
#include <CesiumGltf/ExtensionExtInstanceFeaturesFeatureId.h>
|
||||
#include <CesiumGltf/Library.h>
|
||||
#include <CesiumUtility/ExtensibleObject.h>
|
||||
|
||||
#include <vector>
|
||||
|
||||
namespace CesiumGltf {
|
||||
/**
|
||||
* @brief An object describing per-instance feature IDs.
|
||||
*/
|
||||
struct CESIUMGLTF_API ExtensionExtInstanceFeatures final
|
||||
: public CesiumUtility::ExtensibleObject {
|
||||
/**
|
||||
* @brief The original name of this type.
|
||||
*/
|
||||
static constexpr const char* TypeName = "ExtensionExtInstanceFeatures";
|
||||
/** @brief The official name of the extension. This should be the same as its
|
||||
* key in the `extensions` object. */
|
||||
static constexpr const char* ExtensionName = "EXT_instance_features";
|
||||
|
||||
/**
|
||||
* @brief An array of feature ID sets.
|
||||
*/
|
||||
std::vector<CesiumGltf::ExtensionExtInstanceFeaturesFeatureId> featureIds;
|
||||
|
||||
/**
|
||||
* @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(ExtensionExtInstanceFeatures));
|
||||
accum += CesiumUtility::ExtensibleObject::getSizeBytes() -
|
||||
int64_t(sizeof(CesiumUtility::ExtensibleObject));
|
||||
accum += int64_t(
|
||||
sizeof(CesiumGltf::ExtensionExtInstanceFeaturesFeatureId) *
|
||||
this->featureIds.capacity());
|
||||
for (const CesiumGltf::ExtensionExtInstanceFeaturesFeatureId& value :
|
||||
this->featureIds) {
|
||||
accum +=
|
||||
value.getSizeBytes() -
|
||||
int64_t(sizeof(CesiumGltf::ExtensionExtInstanceFeaturesFeatureId));
|
||||
}
|
||||
return accum;
|
||||
}
|
||||
};
|
||||
} // namespace CesiumGltf
|
||||
Reference in New Issue
Block a user