This file is indexed.

/usr/include/elementary-1/elm_glview_eo.h is in libelementary-dev 1.8.5-2.

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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
#define ELM_OBJ_GLVIEW_CLASS elm_obj_glview_class_get()

const Eo_Class *elm_obj_glview_class_get(void) EINA_CONST;

extern EAPI Eo_Op ELM_OBJ_GLVIEW_BASE_ID;

enum
{
   ELM_OBJ_GLVIEW_SUB_ID_GL_API_GET,
   ELM_OBJ_GLVIEW_SUB_ID_MODE_SET,
   ELM_OBJ_GLVIEW_SUB_ID_RESIZE_POLICY_SET,
   ELM_OBJ_GLVIEW_SUB_ID_RENDER_POLICY_SET,
   ELM_OBJ_GLVIEW_SUB_ID_SIZE_SET,
   ELM_OBJ_GLVIEW_SUB_ID_SIZE_GET,
   ELM_OBJ_GLVIEW_SUB_ID_INIT_FUNC_SET,
   ELM_OBJ_GLVIEW_SUB_ID_DEL_FUNC_SET,
   ELM_OBJ_GLVIEW_SUB_ID_RESIZE_FUNC_SET,
   ELM_OBJ_GLVIEW_SUB_ID_RENDER_FUNC_SET,
   ELM_OBJ_GLVIEW_SUB_ID_CHANGED_SET,
   ELM_OBJ_GLVIEW_SUB_ID_LAST
};

#define ELM_OBJ_GLVIEW_ID(sub_id) (ELM_OBJ_GLVIEW_BASE_ID + sub_id)


/**
 * @def elm_obj_glview_gl_api_get
 * @since 1.8
 *
 * Get the gl api struct for gl rendering
 *
 * @param[out] ret
 *
 * @see elm_glview_gl_api_get
 *
 * @ingroup GLView
 */
#define elm_obj_glview_gl_api_get(ret) ELM_OBJ_GLVIEW_ID(ELM_OBJ_GLVIEW_SUB_ID_GL_API_GET), EO_TYPECHECK(Evas_GL_API **, ret)

/**
 * @def elm_obj_glview_mode_set
 * @since 1.8
 *
 * Set the mode of the GLView. Supports alpha, depth, stencil.
 *
 * @param[in] mode
 * @param[out] ret
 *
 * @see elm_glview_mode_set
 *
 * @ingroup GLView
 */
#define elm_obj_glview_mode_set(mode, ret) ELM_OBJ_GLVIEW_ID(ELM_OBJ_GLVIEW_SUB_ID_MODE_SET), EO_TYPECHECK(Elm_GLView_Mode, mode), EO_TYPECHECK(Eina_Bool *, ret)

/**
 * @def elm_obj_glview_resize_policy_set
 * @since 1.8
 *
 * Set the resize policy for the glview object.
 *
 * @param[in] policy
 * @param[out] ret
 *
 * @see elm_glview_resize_policy_set
 *
 * @ingroup GLView
 */
#define elm_obj_glview_resize_policy_set(policy, ret) ELM_OBJ_GLVIEW_ID(ELM_OBJ_GLVIEW_SUB_ID_RESIZE_POLICY_SET), EO_TYPECHECK(Elm_GLView_Resize_Policy, policy), EO_TYPECHECK(Eina_Bool *, ret)

/**
 * @def elm_obj_glview_render_policy_set
 * @since 1.8
 *
 * Set the render policy for the glview object.
 *
 * @param[in] policy
 * @param[out] ret
 *
 * @see elm_glview_render_policy_set
 *
 * @ingroup GLView
 */
#define elm_obj_glview_render_policy_set(policy, ret) ELM_OBJ_GLVIEW_ID(ELM_OBJ_GLVIEW_SUB_ID_RENDER_POLICY_SET), EO_TYPECHECK(Elm_GLView_Render_Policy, policy), EO_TYPECHECK(Eina_Bool *, ret)

/**
 * @def elm_obj_glview_size_set
 * @since 1.8
 *
 * Sets the size of the glview
 *
 * @param[in] w
 * @param[in] h
 *
 * @see elm_glview_size_set
 *
 * @ingroup GLView
 */
#define elm_obj_glview_size_set(w, h) ELM_OBJ_GLVIEW_ID(ELM_OBJ_GLVIEW_SUB_ID_SIZE_SET), EO_TYPECHECK(int, w), EO_TYPECHECK(int, h)

/**
 * @def elm_obj_glview_size_get
 * @since 1.8
 *
 * Get the size of the glview.
 *
 * @param[out] w
 * @param[out] h
 *
 * @see elm_glview_size_get
 *
 * @ingroup GLView
 */
#define elm_obj_glview_size_get(w, h) ELM_OBJ_GLVIEW_ID(ELM_OBJ_GLVIEW_SUB_ID_SIZE_GET), EO_TYPECHECK(int *, w), EO_TYPECHECK(int *, h)

/**
 * @def elm_obj_glview_init_func_set
 * @since 1.8
 *
 * Set the init function that runs once in the main loop.
 *
 * @param[in] func
 *
 * @see elm_glview_init_func_set
 *
 * @ingroup GLView
 */
#define elm_obj_glview_init_func_set(func) ELM_OBJ_GLVIEW_ID(ELM_OBJ_GLVIEW_SUB_ID_INIT_FUNC_SET), EO_TYPECHECK(Elm_GLView_Func_Cb, func)

/**
 * @def elm_obj_glview_del_func_set
 * @since 1.8
 *
 * Set the render function that runs in the main loop.
 *
 * @param[in] func
 *
 * @see elm_glview_del_func_set
 *
 * @ingroup GLView
 */
#define elm_obj_glview_del_func_set(func) ELM_OBJ_GLVIEW_ID(ELM_OBJ_GLVIEW_SUB_ID_DEL_FUNC_SET), EO_TYPECHECK(Elm_GLView_Func_Cb, func)

/**
 * @def elm_obj_glview_resize_func_set
 * @since 1.8
 *
 * Set the resize function that gets called when resize happens.
 *
 * @param[in] func
 *
 * @see elm_glview_resize_func_set
 *
 * @ingroup GLView
 */
#define elm_obj_glview_resize_func_set(func) ELM_OBJ_GLVIEW_ID(ELM_OBJ_GLVIEW_SUB_ID_RESIZE_FUNC_SET), EO_TYPECHECK(Elm_GLView_Func_Cb, func)

/**
 * @def elm_obj_glview_render_func_set
 * @since 1.8
 *
 * Set the render function that runs in the main loop.
 *
 * @param[in] func
 *
 * @see elm_glview_render_func_set
 *
 * @ingroup GLView
 */
#define elm_obj_glview_render_func_set(func) ELM_OBJ_GLVIEW_ID(ELM_OBJ_GLVIEW_SUB_ID_RENDER_FUNC_SET), EO_TYPECHECK(Elm_GLView_Func_Cb, func)

/**
 * @def elm_obj_glview_changed_set
 * @since 1.8
 *
 * Notifies that there has been changes in the GLView.
 *
 *
 * @see elm_glview_changed_set
 *
 * @ingroup GLView
 */
#define elm_obj_glview_changed_set() ELM_OBJ_GLVIEW_ID(ELM_OBJ_GLVIEW_SUB_ID_CHANGED_SET)