Notice: MediaWiki has been updated. Report any rough edges to marcan@marcan.st

Talk:C Sync Wrapper

From OpenKinect
Revision as of 17:27, 3 December 2010 by 87.221.245.106 (talk) (Created page with "For now, this page is not true, the real functions are: int freenect_sync_get_rgb(void **rgb, uint32_t *timestamp); /* Synchronous rgb function, starts the runloop if it isn't r...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

For now, this page is not true, the real functions are: int freenect_sync_get_rgb(void **rgb, uint32_t *timestamp); /* Synchronous rgb function, starts the runloop if it isn't running

   Args:
       rgb: Populated with a pointer to a RGB buffer (of size RGB_BYTES)
       timestamp: Populated with a pointer to the associated timestamp
   Returns:
       Nonzero on error.
  • /

int freenect_sync_get_depth(void **depth, uint32_t *timestamp); /* Synchronous depth function, starts the runloop if it isn't running

   Args:
       depth: Populated with a pointer to a depth buffer (of size DEPTH_BYTES)
       timestamp: Populated with a pointer to the associated timestamp
   Returns:
       Nonzero on error.
  • /