Welcome to mirror list, hosted at ThFree Co, Russian Federation.

GLFreeMemoryVisitor.h « rendering « intern « freestyle « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dd6412b1bb7c30c4f88e182ed69cf5b462895f1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef GL_FREE_MEMORY_VISITOR_H_
#define GL_FREE_MEMORY_VISITOR_H_

# include "../system/FreestyleConfig.h"
# include "../scene_graph/SceneVisitor.h"

/*! Mainly used to delete display lists */
class LIB_RENDERING_EXPORT GLFreeMemoryVisitor : public SceneVisitor
{
public:

    GLFreeMemoryVisitor() ;
    virtual ~GLFreeMemoryVisitor() ;

    //
    // visitClass methods
    //
    //////////////////////////////////////////////

        VISIT_DECL(IndexedFaceSet)
};

#endif // GL_FREE_MEMORY_H_