| 286 | } |
| 287 | |
| 288 | fg_err fg_save_window_framebuffer(const char* pFullPath, const fg_window pWindow) |
| 289 | { |
| 290 | try { |
| 291 | ARG_ASSERT(0, pFullPath != NULL); |
| 292 | ARG_ASSERT(1, (pWindow!=0)); |
| 293 | |
| 294 | getWindow(pWindow)->saveFrameBuffer(pFullPath); |
| 295 | } |
| 296 | CATCHALL |
| 297 | return FG_ERR_NONE; |
| 298 | } |
no test coverage detected