Tulip  4.2.0
Better Visualization Through Research
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Groups Pages
GlFeedBackRecorder.h
1 /*
2  *
3  * This file is part of Tulip (www.tulip-software.org)
4  *
5  * Authors: David Auber and the Tulip development Team
6  * from LaBRI, University of Bordeaux 1 and Inria Bordeaux - Sud Ouest
7  *
8  * Tulip is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation, either version 3
11  * of the License, or (at your option) any later version.
12  *
13  * Tulip is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16  * See the GNU General Public License for more details.
17  *
18  */
19 ///@cond DOXYGEN_HIDDEN
20 
21 #ifndef Tulip_GLFEEDBACKRECORDER_H
22 #define Tulip_GLFEEDBACKRECORDER_H
23 
24 #include <tulip/tulipconf.h>
25 #include <cstdlib>
26 
27 #include <tulip/Vector.h>
28 
29 #include <tulip/GlFeedBackBuilder.h>
30 
31 namespace tlp {
32 
33 /** \brief Class use to build an object with an OpenGL feedback buffer
34  *
35  * Class use to build an object with an OpenGL feedback buffer
36  * This class call functions of the GlFeedBackBuilder passed to the constructor
37  */
38 class TLP_GL_SCOPE GlFeedBackRecorder {
39 
40 public:
41 
42  /**
43  * Constructor : the recorder use GlFeedBackBuilder : builder
44  */
45  GlFeedBackRecorder(GlFeedBackBuilder *builder,unsigned int pointSize=7):
46  feedBackBuilder(builder),
47  pointSize(pointSize) {}
48  /**
49  * Record a new feedback buffer
50  * \param doSort : sort the feedback buffer
51  * \param size : size of the feedback buffer
52  * \param feedBackBuffer : the feedback buffer
53  * \param viewport : the viewport of the scene
54  */
55  void record(bool doSort, GLint size, GLfloat *feedBackBuffer,const Vector<int,4>& viewport);
56 
57 private:
58 
59  void sortAndRecord(GLint size, GLfloat *feedBackBuffer);
60  void record(GLint size, GLfloat *feedBackBuffer);
61  GLfloat* recordPrimitive(GLfloat *loc);
62 
63  GlFeedBackBuilder *feedBackBuilder;
64  unsigned int pointSize;
65 
66 };
67 
68 }
69 
70 #endif // Tulip_GLFEEDBACKRECORDER_H
71 ///@endcond