This file is indexed.

/usr/lib/ocaml/sdl/sdlgl.mli is in libsdl-ocaml-dev 0.9.1-2build4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
(** LablGL interaction *)

external swap_buffers : unit -> unit
    = "ml_SDL_GL_SwapBuffers"

type attr =
  | RED_SIZE of int
  | GREEN_SIZE of int
  | BLUE_SIZE of int
  | ALPHA_SIZE of int
  | BUFFER_SIZE of int
  | DOUBLEBUFFER of bool
  | DEPTH_SIZE of int
  | STENCIL_SIZE of int
  | ACCUM_RED_SIZE of int
  | ACCUM_GREEN_SIZE of int
  | ACCUM_BLUE_SIZE of int
  | ACCUM_ALPHA_SIZE of int
  | STEREO of int

external set_attr : attr list -> unit
    = "ml_SDL_GL_SetAttribute"

external get_attr : unit -> attr list
    = "ml_SDL_GL_GetAttribute"

external to_raw : Sdlvideo.surface -> [`ubyte] Raw.t
    = "ml_SDL_GL_to_raw"