blob: 88a8b9388df8c6b91fcbeed9c2f846b6050a116d (
plain)
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
|
/***********************************************************************
FONCTION :
----------
file OpenGl_togl_depthcueing.c :
REMARQUES:
----------
HISTORIQUE DES MODIFICATIONS :
--------------------------------
xx-xx-xx : CAL ; Creation.
05-02-97 : FMN ; Suppression de OpenGl_tgl_vis.h
************************************************************************/
/*----------------------------------------------------------------------*/
/*
* Includes
*/
#include <OpenGl_tgl_all.hxx>
#include <InterfaceGraphic_Graphic3d.hxx>
#include <InterfaceGraphic_Visual3d.hxx>
#include <OpenGl_tgl_subrvis.hxx>
void EXPORT
call_togl_depthcueing
(
CALL_DEF_VIEW * aview,
int tag
)
{
call_subr_depthcueing (aview, tag);
return;
}
|