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

Method bitfields

source/glbinding-aux/source/Meta.cpp:67–80  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

65}
66
67std::vector<GLbitfield> Meta::bitfields()
68{
69 auto bitfields = std::vector<GLbitfield>{};
70
71 for(const auto & map : Meta_BitfieldsByStringMaps)
72 {
73 for (const auto & p : map)
74 {
75 bitfields.push_back(p.second);
76 }
77 }
78
79 return bitfields;
80}
81
82std::set<GLenum> Meta::enums()
83{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected