| 263 | } |
| 264 | |
| 265 | af_err af_show(const af_window wind) { |
| 266 | try { |
| 267 | if (wind == 0) { AF_ERROR("Not a valid window", AF_ERR_INTERNAL); } |
| 268 | FG_CHECK(forgePlugin().fg_swap_window_buffers(wind)); |
| 269 | } |
| 270 | CATCHALL; |
| 271 | return AF_SUCCESS; |
| 272 | } |
| 273 | |
| 274 | af_err af_is_window_closed(bool* out, const af_window wind) { |
| 275 | try { |