| 135 | } |
| 136 | |
| 137 | gl::GLboolean Meta::getBoolean(const std::string & glboolean) |
| 138 | { |
| 139 | const auto i = Meta_BooleansByString.find(glboolean); |
| 140 | |
| 141 | if (i != Meta_BooleansByString.cend()) |
| 142 | { |
| 143 | return i->second; |
| 144 | } |
| 145 | |
| 146 | return static_cast<GLboolean>(-1); |
| 147 | } |
| 148 | |
| 149 | const std::string & Meta::getString(const GLenum glenum) |
| 150 | { |
nothing calls this directly
no outgoing calls
no test coverage detected