Merge "Rename posted to requestedPresent for NATIVE_WINDOW_GET_FRAME_TIMESTAMPS"

This commit is contained in:
Brian C. Anderson 2016-11-30 17:25:49 +00:00 committed by Android (Google) Code Review
commit a8f0b3a2ed

View file

@ -1006,13 +1006,14 @@ static inline int native_window_set_auto_refresh(
static inline int native_window_get_frame_timestamps(
struct ANativeWindow* window, uint32_t framesAgo,
int64_t* outPostedTime, int64_t* outAcquireTime,
int64_t* outRequestedPresentTime, int64_t* outAcquireTime,
int64_t* outRefreshStartTime, int64_t* outGlCompositionDoneTime,
int64_t* outDisplayRetireTime, int64_t* outReleaseTime)
{
return window->perform(window, NATIVE_WINDOW_GET_FRAME_TIMESTAMPS,
framesAgo, outPostedTime, outAcquireTime, outRefreshStartTime,
outGlCompositionDoneTime, outDisplayRetireTime, outReleaseTime);
framesAgo, outRequestedPresentTime, outAcquireTime,
outRefreshStartTime, outGlCompositionDoneTime, outDisplayRetireTime,
outReleaseTime);
}