| 108 | { |
| 109 | |
| 110 | void MakeContextCurrent(const window_impl* pWindow) |
| 111 | { |
| 112 | if (pWindow != NULL) { |
| 113 | pWindow->get()->makeContextCurrent(); |
| 114 | glbinding::Binding::useCurrentContext(); |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | window_impl::window_impl(int pWidth, int pHeight, const char* pTitle, |
| 119 | std::weak_ptr<window_impl> pWindow, const bool invisible) |
no test coverage detected