summaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
Diffstat (limited to 'hw')
-rw-r--r--hw/display.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/hw/display.h b/hw/display.h
index 83ec3ed..34b3d74 100644
--- a/hw/display.h
+++ b/hw/display.h
@@ -81,6 +81,12 @@ struct display_device {
/* Control panel mode mode */
int (*get_panel_mode)(enum display_panel_mode *mode);
int (*set_panel_mode)(enum display_panel_mode mode);
+
+ /* Control display frame rate */
+ int (*get_max_frame_rate)(int *rate);
+ int (*get_min_frame_rate)(int *rate);
+ int (*get_frame_rate)(int *rate);
+ int (*set_frame_rate)(int rate);
};
#endif