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

Method setCallbackMaskExcept

source/glbinding/source/Binding.cpp:24–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22}
23
24void Binding::setCallbackMaskExcept(const CallbackMask mask, const std::set<std::string> & blackList)
25{
26 for (auto function : Binding::functions())
27 {
28 if (blackList.find(function->name()) == blackList.end())
29 {
30 function->setCallbackMask(mask);
31 }
32 }
33}
34
35void Binding::addCallbackMask(const CallbackMask mask)
36{

Callers

nothing calls this directly

Calls 2

nameMethod · 0.80
setCallbackMaskMethod · 0.45

Tested by

no test coverage detected