#include "source/opt/feature_manager.h"
#include <string>
#include "source/enum_string_mapping.h"
namespace spvtools {
namespace opt {
void FeatureManager::Analyze(Module* module) { … }
void FeatureManager::AddExtensions(Module* module) { … }
void FeatureManager::AddExtension(Instruction* ext) { … }
void FeatureManager::RemoveExtension(Extension ext) { … }
void FeatureManager::AddCapability(spv::Capability cap) { … }
void FeatureManager::RemoveCapability(spv::Capability cap) { … }
void FeatureManager::AddCapabilities(Module* module) { … }
void FeatureManager::AddExtInstImportIds(Module* module) { … }
bool operator==(const FeatureManager& a, const FeatureManager& b) { … }
}
}