| 134 | GetOGLProcAddressProc GetOGLProcAddress; |
| 135 | |
| 136 | static std::optional<std::string_view> GlGetString(GLenum name) |
| 137 | { |
| 138 | auto str = reinterpret_cast<const char *>(_glGetString(name)); |
| 139 | if (str == nullptr) return {}; |
| 140 | return str; |
| 141 | } |
| 142 | |
| 143 | /** |
| 144 | * Find a substring in a string made of space delimited elements. The substring |
no outgoing calls
no test coverage detected