blob: 7602945a6a439af0fabafca133990557c449a37b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include <OpenGl_tgl_all.hxx>
#include <InterfaceGraphic_Graphic3d.hxx>
#include <OpenGl_tgl.hxx>
#include <OpenGl_tgl_funcs.hxx>
#include <OpenGl_tgl_subrs.hxx>
#include <OpenGl_tgl_utilgr.hxx>
void EXPORT
call_togl_marker_set
(
CALL_DEF_GROUP * agroup,
CALL_DEF_LISTMARKERS * almarkers
)
{
if (! agroup->IsOpen) call_togl_opengroup (agroup);
call_subr_marker_set (almarkers);
if (! agroup->IsOpen) call_togl_closegroup (agroup);
return;
}
|