/usr/include/oce/OpenGl_animation.hxx is in liboce-visualization-dev 0.9.1-3.
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 | /***********************************************************************
FONCTION :
----------
File OpenGl_animation.h :
REMARQUES:
----------
HISTORIQUE DES MODIFICATIONS :
--------------------------------
17-03-98 : FMN ; Creation.
08-07-98 : FMN ; Changement du nom de la primitive call_togl_erase_immediat_mode()
-> call_togl_erase_animation_mode.
15-07-98 : FMN ; Portage Optimizer
************************************************************************/
#ifndef OPENGL_ANIMATION_H
#define OPENGL_ANIMATION_H
/*----------------------------------------------------------------------*/
/*
* Include
*/
#include <GL/gl.h>
/*----------------------------------------------------------------------*/
/*
* Fonctions externes
*/
extern void call_togl_erase_animation_mode(void);
/*----------------------------------------------------------------------*/
/*
* Variables externes
*/
/* La display-list utilisee pour le mode animation */
extern GLuint listIndex;
/* La vue de reference pour le mode animation */
extern int listIndexView;
/* Flag si la display-list a ete initialise*/
extern GLboolean listIndexFlag;
/* Flag mode animation en cours */
extern GLboolean animationFlag;
/* Flag si le mode animation est disponible
* (cf. var environnement CALL_ANIMATION) */
extern GLboolean animationUseFlag;
/*----------------------------------------------------------------------*/
#endif /* OPENGL_ANIMATION_H */
|