| 65 | } |
| 66 | |
| 67 | std::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 | |
| 82 | std::set<GLenum> Meta::enums() |
| 83 | { |
nothing calls this directly
no outgoing calls
no test coverage detected