Bug List

Summary

  • Member AChoreographer_postFrameCallback (AChoreographer *choreographer, AChoreographer_frameCallback callback, void *data) __DEPRECATED_IN(29
  • The callback receives the frame time in nanoseconds as a long. On 32-bit systems, long is 32-bit, so the frame time will roll over roughly every two seconds. If your minSdkVersion is 29 or higher, switch to AChoreographer_postFrameCallback64, which uses a 64-bit frame time for all platforms. For older OS versions, you must combine the argument with the upper bits of clock_gettime(CLOCK_MONOTONIC, ...) on 32-bit systems.
  • Member AChoreographer_postFrameCallbackDelayed (AChoreographer *choreographer, AChoreographer_frameCallback callback, void *data, long delayMillis) __DEPRECATED_IN(29
  • The callback receives the frame time in nanoseconds as a long. On 32-bit systems, long is 32-bit, so the frame time will roll over roughly every two seconds. If your minSdkVersion is 29 or higher, switch to AChoreographer_postFrameCallbackDelayed64, which uses a 64-bit frame time for all platforms. For older OS versions, you must combine the argument with the upper bits of clock_gettime(CLOCK_MONOTONIC, ...) on 32-bit systems.
  • Member ALooper_pollAll (int timeoutMillis, int *outFd, int *outEvents, void **outData) __REMOVED_IN(1
  • ALooper_pollAll() will not wake in response to ALooper_wake() calls if it also handles another event at the same time.
  • Member ALooper_wake (ALooper *looper)
  • ALooper_pollAll() will not reliably wake in response to ALooper_wake().