A Gdk.Frame_Timings.Gdk_Frame_Timings object holds timing information for a single frame of the application's displays. To retrieve Gdk.Frame_Timings.Gdk_Frame_Timings objects, use Gdk.Frame_Clock.Get_Timings or Gdk.Frame_Clock.Get_Current_Timings. The information in Gdk.Frame_Timings.Gdk_Frame_Timings is useful for precise synchronization of video with the event or audio streams, and for measuring quality metrics for the application's display, such as latency and jitter.
function From_Object (Object : System.Address) return Gdk_Frame_Timings
function From_Object_Free (B : access Gdk_Frame_Timings'Class) return Gdk_Frame_Timings
type Gdk_Frame_Timings is new Glib.C_Boxed with null record;
function Get_Complete (Self : Gdk_Frame_Timings) return Boolean
The timing information in a Gdk.Frame_Timings.Gdk_Frame_Timings is filled in incrementally as the frame as drawn and passed off to the window system for processing and display to the user. The accessor functions for Gdk.Frame_Timings.Gdk_Frame_Timings can return 0 to indicate an unavailable value for two reasons: either because the information is not yet available, or because it isn't available at all. Once Gdk.Frame_Timings.Get_Complete returns True for a frame, you can be certain that no further values will become available and be stored in the Gdk.Frame_Timings.Gdk_Frame_Timings. Since: gtk+ 3.8
True if all information that will be available for the frame has been filled in.
function Get_Frame_Counter (Self : Gdk_Frame_Timings) return Gint64
Gets the frame counter value of the Gdk.Frame_Clock.Gdk_Frame_Clock when this this frame was drawn. Since: gtk+ 3.8
the frame counter value for this frame
function Get_Frame_Time (Self : Gdk_Frame_Timings) return Gint64
Returns the frame time for the frame. This is the time value that is typically used to time animations for the frame. See Gdk.Frame_Clock.Get_Frame_Time.
the frame time for the frame, in the timescale of g_get_monotonic_time
function Get_Predicted_Presentation_Time
(Self : Gdk_Frame_Timings) return Gint64
Gets the predicted time at which this frame will be displayed. Although no predicted time may be available, if one is available, it will be available while the frame is being generated, in contrast to Gdk.Frame_Timings.Get_Presentation_Time, which is only available after the frame has been presented. In general, if you are simply animating, you should use Gdk.Frame_Clock.Get_Frame_Time rather than this function, but this function is useful for applications that want exact control over latency. For example, a movie player may want this information for Audio/Video synchronization. Since: gtk+ 3.8
The predicted time at which the frame will be presented, in the timescale of g_get_monotonic_time, or 0 if no predicted presentation time is available.
function Get_Presentation_Time (Self : Gdk_Frame_Timings) return Gint64
Reurns the presentation time. This is the time at which the frame became visible to the user. Since: gtk+ 3.8
the time the frame was displayed to the user, in the timescale of g_get_monotonic_time, or 0 if no presentation time is available. See Gdk.Frame_Timings.Get_Complete
function Get_Refresh_Interval (Self : Gdk_Frame_Timings) return Gint64
Gets the natural interval between presentation times for the display that this frame was displayed on. Frame presentation usually happens during the "vertical blanking interval". Since: gtk+ 3.8
the refresh interval of the display, in microseconds, or 0 if the refresh interval is not available. See Gdk.Frame_Timings.Get_Complete.
function Get_Type return Glib.GType
Null_Gdk_Frame_Timings : constant Gdk_Frame_Timings;
function Ref (Self : Gdk_Frame_Timings) return Gdk_Frame_Timings
Increases the reference count of Timings. Since: gtk+ 3.8
Timings
procedure Unref (Self : Gdk_Frame_Timings)
Decreases the reference count of Timings. If Timings is no longer referenced, it will be freed. Since: gtk+ 3.8