summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;