summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Leon Scroggins <scroggo@google.com> 2022-08-26 21:10:02 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2022-08-26 21:10:02 +0000
commitdfcdf5d52963764fe9ede06c489200dfb2e31ea3 (patch)
tree2e00718da7fff63ad6ea94a1ca608455ac141c9e
parente33a65b2fae84267f25d5b0a19c83e4f7eda34f6 (diff)
parentf265c480b0750a645273ec703927e251b142b1c1 (diff)
Merge "Update docs for location of matching native flags"
-rw-r--r--core/java/android/view/DisplayEventReceiver.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/java/android/view/DisplayEventReceiver.java b/core/java/android/view/DisplayEventReceiver.java
index 3a74b2ed63a7..169c8c51bb53 100644
--- a/core/java/android/view/DisplayEventReceiver.java
+++ b/core/java/android/view/DisplayEventReceiver.java
@@ -44,7 +44,7 @@ public abstract class DisplayEventReceiver {
* When retrieving vsync events, this specifies that the vsync event should happen at the normal
* vsync-app tick.
* <p>
- * Needs to be kept in sync with frameworks/native/include/gui/ISurfaceComposer.h
+ * Keep in sync with frameworks/native/libs/gui/aidl/android/gui/ISurfaceComposer.aidl
*/
public static final int VSYNC_SOURCE_APP = 0;
@@ -52,21 +52,21 @@ public abstract class DisplayEventReceiver {
* When retrieving vsync events, this specifies that the vsync event should happen whenever
* Surface Flinger is processing a frame.
* <p>
- * Needs to be kept in sync with frameworks/native/include/gui/ISurfaceComposer.h
+ * Keep in sync with frameworks/native/libs/gui/aidl/android/gui/ISurfaceComposer.aidl
*/
public static final int VSYNC_SOURCE_SURFACE_FLINGER = 1;
/**
* Specifies to generate mode changed events from Surface Flinger.
* <p>
- * Needs to be kept in sync with frameworks/native/include/gui/ISurfaceComposer.h
+ * Keep in sync with frameworks/native/libs/gui/aidl/android/gui/ISurfaceComposer.aidl
*/
public static final int EVENT_REGISTRATION_MODE_CHANGED_FLAG = 0x1;
/**
* Specifies to generate frame rate override events from Surface Flinger.
* <p>
- * Needs to be kept in sync with frameworks/native/include/gui/ISurfaceComposer.h
+ * Keep in sync with frameworks/native/libs/gui/aidl/android/gui/ISurfaceComposer.aidl
*/
public static final int EVENT_REGISTRATION_FRAME_RATE_OVERRIDE_FLAG = 0x2;