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

Method removeExtensionUsed

CesiumGltf/src/Model.cpp:953–960  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

951}
952
953void Model::removeExtensionUsed(const std::string& extensionName) {
954 this->extensionsUsed.erase(
955 std::remove(
956 this->extensionsUsed.begin(),
957 this->extensionsUsed.end(),
958 extensionName),
959 this->extensionsUsed.end());
960}
961
962void Model::removeExtensionRequired(const std::string& extensionName) {
963 this->removeExtensionUsed(extensionName);

Callers 2

TestModel.cppFile · 0.45

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected