0027816: Visualization - provide an API for overriding clipping planes list
[occt.git] / src / Graphic3d / Graphic3d_CappingFlags.hxx
CommitLineData
3e05329c 1// Created on: 2016-08-04
2// Copyright (c) 2016 OPEN CASCADE SAS
3//
4// This file is part of Open CASCADE Technology software library.
5//
6// This library is free software; you can redistribute it and/or modify it under
7// the terms of the GNU Lesser General Public License version 2.1 as published
8// by the Free Software Foundation, with special exception defined in the file
9// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
10// distribution for complete text of the license and disclaimer of any warranty.
11//
12// Alternatively, this file may be used under the terms of Open CASCADE
13// commercial license or contractual agreement.
14
15#ifndef _Graphic3d_CappingFlags_HeaderFile
16#define _Graphic3d_CappingFlags_HeaderFile
17
18//! Enumeration of capping flags.
19enum Graphic3d_CappingFlags
20{
21 Graphic3d_CappingFlags_None = 0x0000, //!< no flags
22 Graphic3d_CappingFlags_ObjectMaterial = 0x0001, //!< use object material
23 Graphic3d_CappingFlags_ObjectTexture = 0x0002, //!< use object texture
24 Graphic3d_CappingFlags_ObjectShader = 0x0008, //!< use object GLSL program
25 Graphic3d_CappingFlags_ObjectAspect =
26 Graphic3d_CappingFlags_ObjectMaterial | Graphic3d_CappingFlags_ObjectTexture | Graphic3d_CappingFlags_ObjectShader //!< use entire fill area aspect from object
27};
28
29#endif // _Graphic3d_CappingFlags_HeaderFile