JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
GlutTool.h
Go to the documentation of this file.
1#ifndef __JBXL_CPP_OPENGL_TOOL_H_
2#define __JBXL_CPP_OPENGL_TOOL_H_
3
11//#define ENABLE_OPENGL 1
12
13
14
15
16#ifdef ENABLE_OPENGL
17
18
19#include <GL/gl.h>
20#include <GL/glut.h>
21
22
23
24
25//
26namespace jbxl {
27
28
29
30typedef struct _JBXL_GLUT_MOUSESTATE
31{
32 long int lX;
33 long int lY;
34 long int lZ;
35 unsigned char rgbButtons[4];
36} JBXL_GLUT_MOUSESTATE;
37
38
39
40//extern JBXL_GLUT_MOUSESTATE GlutMouseState;
41//extern long int GlutMouseXPos;
42//extern long int GlutMouseYPos;
43//extern long int GlutMouseZPos;
44
45
46
47void JbxlGlutInit(int argc=0, char** argv=NULL);
48
49void _jbxlGlutMouseProc(int button, int state, int x, int y);
50
51void JbxlGlutInitMouse(void);
52
53
54
55
56} // namespace
57
58
59
60
61
62#endif // ENABLE_OPENGL
63
64#endif // __JBXL_CPP_OPENGL_TOOL_H_
65
66
67
68
69
70
71
Definition Brep.h:29