We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6490bf commit 76c438dCopy full SHA for 76c438d
1 file changed
src/common/AdpfWrapper.h
@@ -74,9 +74,10 @@ namespace oboe {
74
/**
75
* Report the measured duration of a callback.
76
* This is normally called by onEndCallback().
77
- * On older Android devices (below Android 16), you may want to call this directly in order
78
- * to give an advance hint of a jump in workload.
79
- * On newer APIs, use notifyWorkloadIncrease() instead.
+ * On older Android devices (below Android API level 36), you may want to call this
+ * directly in order to give an advance hint of a jump in workload.
+ * On Android API level 36 and above, notifyWorkloadIncrease() is the preferred
80
+ * API to call instead to signal an upcoming increase in workload.
81
* @param actualDurationNanos
82
*/
83
void reportActualDuration(int64_t actualDurationNanos);
0 commit comments