0031668: Visualization - WebGL sample doesn't work on Emscripten 1.39
[occt.git] / src / Aspect / Aspect_PolygonOffsetMode.hxx
1 // Created on: 2004-03-22
2 // Created by: Sergey ANIKIN
3 // Copyright (c) 1999-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 #ifndef ASPECT_POLYGONOFFSETMODE_HEADER
17 #define ASPECT_POLYGONOFFSETMODE_HEADER
18
19 // Enumeration for polygon offset modes
20
21 typedef enum 
22 {
23   Aspect_POM_Off   = 0x00,  /* all polygon offset modes disabled                     */
24   Aspect_POM_Fill  = 0x01,  /* GL_POLYGON_OFFSET_FILL enabled (shaded polygons)      */
25   Aspect_POM_Line  = 0x02,  /* GL_POLYGON_OFFSET_LINE enabled (polygons as outlines) */
26   Aspect_POM_Point = 0x04,  /* GL_POLYGON_OFFSET_POINT enabled (polygons as vertices)*/
27   Aspect_POM_All   = Aspect_POM_Fill | Aspect_POM_Line | Aspect_POM_Point,
28   Aspect_POM_None  = 0x08,  /* do not change current polygon offset mode             */
29   Aspect_POM_Mask  = Aspect_POM_All  | Aspect_POM_None
30 } Aspect_PolygonOffsetMode;
31
32 #endif
33