This file is indexed.

/usr/include/dx/screen.h is in libdx4-dev 1:4.4.4-7.

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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/***********************************************************************/
/* Open Visualization Data Explorer                                    */
/* (C) Copyright IBM Corp. 1989,1999                                   */
/* ALL RIGHTS RESERVED                                                 */
/* This code licensed under the                                        */
/*    "IBM PUBLIC LICENSE - Open Visualization Data Explorer"          */
/***********************************************************************/


#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif

#ifndef _DXI_SCREEN_H_
#define _DXI_SCREEN_H_

/* TeX starts here. Do not remove this comment. */

/*
\section{Screen class}

A screen object specifies an object that maintains a size and
alignment with the screen (output image) independent of the camera
view and scaling transformations applied to the screen object.

Three options are provided for the interpretation of translations
applied to a screen object.  First, a translation applied to the
screen object may specify a new position for the origin of the screen
object in world space.  Second, a translation applied to the screen
object may specify a new location for the screen object in the image,
measured in pixels, where (0,0) refers to the lower-left corner of the
image.  Third, a translation applied to the screen object may specify
a new location for the screen object in image, measured in
viewport-relative coordinates, where (0,0) refers to the lower-left
corner of the image and (1,1) refers to the upper-right corner of the
image.

In addition, with regard to $z$, the object may be displayed either in
place in the scene, in front of all objects, or behind all objects,
according to whether the {\tt z} parameter to {\tt DXNewScreen()} is 0,
$+1$, or $-1$ respectively.
*/

#define SCREEN_WORLD 0
#define SCREEN_VIEWPORT 1
#define SCREEN_PIXEL 2
#define SCREEN_STATIONARY 3

Screen DXNewScreen(Object o, int position, int z);
/**
\index{DXNewScreen}
Creates a new object representing {\tt o} aligned to the final screen.
The {\tt position} parameter specifies one of the three options for
positioning of the screen object discussed above; it must be one of
{\tt SCREEN\_WORLD}, {\tt SCREEN\_PIXEL}, or {\tt SCREEN\_VIEWPORT}.
The {\tt z} parameter determines the relative depth of the object, as
described above.  Returns the screen object, or returns null and sets
the error code to indicate an error.
**/

Screen DXGetScreenInfo(Screen s, Object *o, int *position, int *z);
/**
\index{DXGetScreenInfo}
If {\tt o} is not null, returns the object to be transformed in {\tt
*o}.  If {\tt position} is not null, returns in {\tt *position} the
positioning option specified when the screen object was created.  If
{\tt z} is not null, returns in {\tt *z} the {\tt z} option specified
when the screen object was created.  Returns {\tt s}, or returns null
and sets the error code to indicate an error.
**/

Screen DXSetScreenObject(Screen s, Object o);
/**
\index{DXSetScreenObject}
This routine sets the object to which the screen transform is applied
to {\tt o}.  Returns {\tt s}, or returns null and sets the error code
to indicate an error.
**/

#endif /* _DXI_SCREEN_H_ */

#if defined(__cplusplus) || defined(c_plusplus)
}
#endif