| 1785 | } |
| 1786 | |
| 1787 | bool camera_context::get_camera_frame(u8* dst, u32& width, u32& height, u64& frame_number, u64& bytes_read) |
| 1788 | { |
| 1789 | if (handler) |
| 1790 | { |
| 1791 | return on_handler_state(handler->get_image(dst, info.bytesize, width, height, frame_number, bytes_read)); |
| 1792 | } |
| 1793 | |
| 1794 | return true; |
| 1795 | } |
| 1796 | |
| 1797 | void camera_context::stop_camera() |
| 1798 | { |
no test coverage detected