summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Ram Indani <ramindani@google.com> 2024-11-20 18:44:45 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2024-11-20 18:44:45 +0000
commitf5dc70fffbb6f6c4502a97c2d3eccf110934b5ac (patch)
tree2f78b32f2358f1d7db75815483cfe0dab9d7a335
parent2ede2ad0f544b802b0c84d9fe499ee819b3cb82b (diff)
parent355d8c6dc9ec232f2af9206ba1e3f64dab7ba205 (diff)
Merge "Update the javadoc for FrameRateCategory constants" into main
-rw-r--r--core/java/android/view/Display.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/core/java/android/view/Display.java b/core/java/android/view/Display.java
index a1a9fc697271..09a78e5ebb4e 100644
--- a/core/java/android/view/Display.java
+++ b/core/java/android/view/Display.java
@@ -1279,8 +1279,19 @@ public final class Display {
}
}
+ /**
+ * Represents the {@link FrameRateCategory} for the Normal frame rate
+ *
+ * @see FrameRateCategory
+ */
@FlaggedApi(FLAG_ENABLE_GET_SUGGESTED_FRAME_RATE)
public static final int FRAME_RATE_CATEGORY_NORMAL = 0;
+
+ /**
+ * Represents the {@link FrameRateCategory} for the High frame rate
+ *
+ * @see FrameRateCategory
+ */
@FlaggedApi(FLAG_ENABLE_GET_SUGGESTED_FRAME_RATE)
public static final int FRAME_RATE_CATEGORY_HIGH = 1;