-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglut_main.cpp
65 lines (50 loc) · 1.99 KB
/
glut_main.cpp
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#include <vlCore/VisualizationLibrary.hpp>
#include <vlGLUT/GLUTWindow.hpp>
#include <vlCore/Colors.hpp>
#include "MouseListener.h"
#include "MainWindow.h"
using namespace vl;
int main( int argc, char* argv[] ) {
/* init GLUT */
int pargc = argc;
glutInit( &pargc, argv );
/* init Visualization Library */
VisualizationLibrary::init();
/* install Visualization Library shutdown function */
atexit( vlGLUT::atexit_visualization_library_shutdown );
/* setup the OpenGL context format */
OpenGLContextFormat format;
format.setDoubleBuffer( true );
format.setRGBABits( 8, 8, 8, 0 );
format.setDepthBufferBits( 24 );
format.setStencilBufferBits( 8 );
format.setMultisampleSamples( 16 );
format.setMultisample( false );
format.setFullscreen( false );
//format.setOpenGLProfile( GLP_Core );
//format.setVersion( 3, 3 );
/* create the applet to be run */
MainWindow* w = new MainWindow;
vl::ref<vl::Applet> applet = w;
applet->initialize();
//applet->setTrackball( new MouseListener( w ) );
//applet->trackball()->setCamera( applet->rendering()->as<vl::Rendering>()->camera() );
/* create a native GLUT window */
ref<vlGLUT::GLUTWindow> glut_window = new vlGLUT::GLUTWindow;
/* bind the applet so it receives all the GUI events related to the OpenGLContext */
glut_window->addEventListener( applet.get() );
/* target the window so we can render on it */
applet->rendering()->as<Rendering>()->renderer()->setFramebuffer( glut_window->framebuffer() );
/* Initialize the OpenGL context and window properties */
int x = 0;
int y = 0;
int width = 800;
int height = 600;
glut_window->initGLUTWindow( "Sphere rendering using Visualization Library", format, x, y, width, height );
/* ... you can open more than one GLUT window! */
/* enter the GLUT main loop */
glutMainLoop();
/* this point is never reached since glutMainLoop() never returns! */
return 0;
}
// Have fun!