From b5ade0341741d9c87f6c73e5c5f7b6eeceb4bce8 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Thu, 27 Oct 2016 12:18:11 -0700 Subject: [PATCH] Replace "GL" naming with "GPU". Test: Manual testing with Chrome. Change-Id: Ib9c861f27c59ed17bd2155d9b8b4224cd90e8935 --- include/system/window.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/system/window.h b/include/system/window.h index 9a58ca4a8..c3407731b 100644 --- a/include/system/window.h +++ b/include/system/window.h @@ -1054,14 +1054,14 @@ static inline int native_window_get_frame_timestamps( struct ANativeWindow* window, uint64_t frameId, int64_t* outRequestedPresentTime, int64_t* outAcquireTime, int64_t* outLatchTime, int64_t* outFirstRefreshStartTime, - int64_t* outLastRefreshStartTime, int64_t* outGlCompositionDoneTime, + int64_t* outLastRefreshStartTime, int64_t* outGpuCompositionDoneTime, int64_t* outDisplayPresentTime, int64_t* outDisplayRetireTime, int64_t* outDequeueReadyTime, int64_t* outReleaseTime) { return window->perform(window, NATIVE_WINDOW_GET_FRAME_TIMESTAMPS, frameId, outRequestedPresentTime, outAcquireTime, outLatchTime, outFirstRefreshStartTime, outLastRefreshStartTime, - outGlCompositionDoneTime, outDisplayPresentTime, + outGpuCompositionDoneTime, outDisplayPresentTime, outDisplayRetireTime, outDequeueReadyTime, outReleaseTime); }