This file is indexed.

/usr/include/togl.h is in libtogl-dev 2.0-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
 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
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
/* $Id: togl.h,v 1.37 2008/04/17 00:13:42 gregcouch Exp $ */

/* vi:set sw=4: */

/* 
 * Togl - a Tk OpenGL widget
 *
 * Copyright (C) 1996-2002  Brian Paul and Ben Bederson
 * Copyright (C) 2005-2008  Greg Couch
 * See the LICENSE file for copyright details.
 */


#ifndef TOGL_H
#  define TOGL_H

#  include "togl_ws.h"

#  ifdef TOGL_WGL
#    define WIN32_LEAN_AND_MEAN
#    include <windows.h>
#    undef WIN32_LEAN_AND_MEAN
#    if defined(_MSC_VER)
#      	define DllEntryPoint DllMain
#    endif
#  endif

#  ifdef TOGL_AGL
#    ifndef MAC_OSX_TCL
#      define MAC_OSX_TCL 1
#    endif
#    ifndef MAC_OSX_TK
#      define MAC_OSX_TK 1
#    endif
#  endif

#  ifdef USE_TOGL_STUBS
#    ifndef USE_TCL_STUBS
#      define USE_TCL_STUBS
#    endif
#    ifndef USE_TK_STUBS
#      define USE_TK_STUBS
#    endif
#  endif

#  include <tcl.h>
#  include <tk.h>
#  if defined(TOGL_AGL)
#    include <OpenGL/gl.h>
#  else
#    include <GL/gl.h>
#  endif

#  ifdef BUILD_togl
#    undef TCL_STORAGE_CLASS
#    define TCL_STORAGE_CLASS DLLEXPORT
#  endif

#  ifndef CONST84
#    define CONST84
#  endif

#  ifndef NULL
#    define NULL 0
#  endif

#  ifndef EXTERN
#    define EXTERN extern
#  endif

#  ifdef __cplusplus
/* *INDENT-OFF* */
extern "C" {
/* *INDENT-ON* */
#  endif

#  define TOGL_VERSION "2.0"
#  define TOGL_MAJOR_VERSION 2
#  define TOGL_MINOR_VERSION 0

/* 
 * "Standard" fonts which can be specified to Togl_LoadBitmapFont()
 * Deprecated.  Use the Tk font name or description instead.
 */
#  define TOGL_BITMAP_8_BY_13		"8x13"
#  define TOGL_BITMAP_9_BY_15		"9x15"
#  define TOGL_BITMAP_TIMES_ROMAN_10 	"Times 10"
#  define TOGL_BITMAP_TIMES_ROMAN_24 	"Times 24"
#  define TOGL_BITMAP_HELVETICA_10 	"Helvetica 10"
#  define TOGL_BITMAP_HELVETICA_12 	"Helvetica 12"
#  define TOGL_BITMAP_HELVETICA_18 	"Helvetica 18"

/* 
 * Normal and overlay plane constants
 */
#  define TOGL_NORMAL	1
#  define TOGL_OVERLAY	2

/* 
 * Stereo techniques:
 *      Only the native method uses OpenGL quad-buffered stereo.
 *      All need the eye offset and eye distance set properly.
 */
/* These versions need one eye drawn */
#  define TOGL_STEREO_NONE		0
#  define TOGL_STEREO_LEFT_EYE		1       /* just the left eye */
#  define TOGL_STEREO_RIGHT_EYE		2       /* just the right eye */
#  define TOGL_STEREO_NVIDIA_CON	3       /* GeForce Consumer 3D stereo */
#  define TOGL_STEREO_ONE_EYE_MAX	127
/* These versions need both eyes drawn */
#  define TOGL_STEREO_NATIVE		128
#  define TOGL_STEREO_SGIOLDSTYLE	129     /* interlaced, SGI API */
#  define TOGL_STEREO_ANAGLYPH		130
#  define TOGL_STEREO_CROSS_EYE		131
#  define TOGL_STEREO_WALL_EYE		132
#  define TOGL_STEREO_DTI		133     /* dti3d.com */

struct Togl;
typedef struct Togl Togl;
typedef void (*Togl_FuncPtr) ();

const char *Togl_InitStubs _ANSI_ARGS_((Tcl_Interp *interp, const char *version,
                int exact));

#  ifndef USE_TOGL_STUBS
#    define Togl_InitStubs(interp, version, exact) \
	Tcl_PkgRequire(interp, "Togl", version, exact)
#  endif

#  ifdef __cplusplus
/* *INDENT-OFF* */
}
/* *INDENT-ON* */
#  endif

/* 
 * Platform independent exported functions
 */

#  include "toglDecls.h"

#endif