This file is indexed.

/usr/lib/ocaml/lablgl/glClear.mli is in liblablgl-ocaml-dev 1:1.05-1.

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
(* $Id: glClear.mli,v 1.3 1999-11-15 09:55:05 garrigue Exp $ *)

type buffer = [`accum|`color|`depth|`stencil]
val clear : buffer list -> unit
    (* glClear: clear the specified buffers *)

val accum : ?alpha:float -> Gl.rgb -> unit
val color : ?alpha:float -> Gl.rgb -> unit
val depth : Gl.clampf -> unit
val index : float -> unit
val stencil : int -> unit
    (* Set the clear value for each buffer: glClearAccum etc *)