(long window)
| 135 | @Override |
| 136 | public void windowRefresh(long window) { |
| 137 | Runnable r = () -> { |
| 138 | checkClassLoader(); |
| 139 | GlfwCallback a = adaptors.get(window); |
| 140 | if (a != null) a.windowRefresh(window); |
| 141 | }; |
| 142 | |
| 143 | if (checkThread()) r.run(); |
| 144 | else { |
| 145 | events.addLast(r); |
| 146 | RunLoop.main.shouldSleep.add(Windows.this); |
| 147 | RunLoop.main.interrupt(); |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | |
| 152 | boolean fakeButton1 = false; |
| 153 | |
| 154 | @Override |
nothing calls this directly
no test coverage detected