blob: 7c0dd3c40712f4914009eb258a2bdb999512ecfe (
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
39
|
/***********************************************************************
FONCTION :
----------
file OpenGl_togl_deactivateview.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_funcs.hxx>
void EXPORT
call_togl_deactivateview
(
CALL_DEF_VIEW * aview
)
{
if (aview->WsId != -1)
call_func_post_struct (aview->WsId, -1, ( float )1.0);
return;
}
|