Module SFVideoMode

module SFVideoMode: sig .. end

Online documentation for the VideoMode class

type t = {
   width : int;
   height : int;
   bitsPerPixel : int;
}
val getFullscreenModes : unit -> t array
val getDesktopMode : unit -> t
val isValid : t -> bool
val make : ?bpp:int -> int * int -> t