MCPcopy Create free account
hub / github.com/CesiumGS/cesium-native / removeExtensionRequired

Method removeExtensionRequired

CesiumGltf/src/Model.cpp:962–971  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

960}
961
962void Model::removeExtensionRequired(const std::string& extensionName) {
963 this->removeExtensionUsed(extensionName);
964
965 this->extensionsRequired.erase(
966 std::remove(
967 this->extensionsRequired.begin(),
968 this->extensionsRequired.end(),
969 extensionName),
970 this->extensionsRequired.end());
971}
972
973bool Model::isExtensionUsed(const std::string& extensionName) const noexcept {
974 return std::find(

Callers 6

decodeSpzFunction · 0.45
decodeMeshOptFunction · 0.45
dequantizeMeshDataFunction · 0.45
decodeDracoFunction · 0.45
applyKhrTextureTransformFunction · 0.45
TestModel.cppFile · 0.45

Calls 3

removeExtensionUsedMethod · 0.95
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected