///////////////////////////////////////////////////////
| 128 | { |
| 129 | //////////////////////////////////////////////////////////// |
| 130 | EglScopedChecker::EglScopedChecker(const std::string_view file, const std::string_view expression, const unsigned int line) : |
| 131 | m_file(file), |
| 132 | m_expression(expression), |
| 133 | m_line(line) |
| 134 | { |
| 135 | if (const auto error = eglGetError(); error != EGL_SUCCESS) |
| 136 | err() << "EGL error (" << error << ") detected during eglCheck call" << std::endl; |
| 137 | } |
| 138 | |
| 139 | |
| 140 | //////////////////////////////////////////////////////////// |
nothing calls this directly
no outgoing calls
no test coverage detected