| 85 | { |
| 86 | public: |
| 87 | explicit GlxErrorHandler(::Display* display) : m_display(display) |
| 88 | { |
| 89 | glxErrorOccurred = false; |
| 90 | m_previousHandler = XSetErrorHandler(handleXError); |
| 91 | } |
| 92 | |
| 93 | ~GlxErrorHandler() |
| 94 | { |
nothing calls this directly
no outgoing calls
no test coverage detected