MCPcopy Create free account
hub / github.com/cginternals/glbinding / removeCallbackMaskExcept

Method removeCallbackMaskExcept

source/glbinding/source/Binding.cpp:62–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

60}
61
62void Binding::removeCallbackMaskExcept(const CallbackMask mask, const std::set<std::string> & blackList)
63{
64 for (auto function : Binding::functions())
65 {
66 if (blackList.find(function->name()) == blackList.end())
67 {
68 function->removeCallbackMask(mask);
69 }
70 }
71}
72
73Binding::SimpleFunctionCallback Binding::unresolvedCallback()
74{

Callers

nothing calls this directly

Calls 2

nameMethod · 0.80
removeCallbackMaskMethod · 0.45

Tested by

no test coverage detected