/usr/include/oce/OpenGl_telem_depthcue.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 | /***********************************************************************
FONCTION :
----------
File OpenGl_telem_depthcue.h :
REMARQUES:
----------
HISTORIQUE DES MODIFICATIONS :
--------------------------------
xx-xx-xx : xxx ; Creation.
12-02-97 : FMN ; Suppression de TelGetDepthCueRep
************************************************************************/
#ifndef OPENGL_TELEM_DEPTHCUE_H
#define OPENGL_TELEM_DEPTHCUE_H
#include <OpenGl_telem.hxx>
struct TEL_DEPTHCUE
{
TDepthCueType mode;
Tfloat planes[2]; /* in the range 0.0 & 1.0 */
Tfloat scales[2]; /* in the range 0.0 & 1.0. This is fraction
of object colour to be visible */
TEL_COLOUR col;
IMPLEMENT_MEMORY_OPERATORS
};
typedef TEL_DEPTHCUE* tel_depthcue;
struct TEL_GL_DEPTHCUE
{
TEL_DEPTHCUE dcrep;
Tfloat dist[2];
};
typedef TEL_GL_DEPTHCUE* tel_gl_depthcue;
/* ws, dcid, dcrep */
extern TStatus TelSetDepthCueRep( Tint, Tint, tel_depthcue );
/* ws, dcid, dcrep */
extern void TelPrintDepthCueRep( Tint, Tint ); /* ws, hid */
/* ws, viewid, dcid, data */
extern TStatus TelGetGLDepthCue( Tint, Tint, Tint, tel_gl_depthcue );
extern TStatus TelDeleteDepthCuesForWS( Tint wsid );
#endif
|