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

Talk:C Sync Wrapper

From OpenKinect
Revision as of 19: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: navigation, search

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.
  • /