0031405: Advanced wrappers, C# wrapper - dark colors in WPF sample
[occt.git] / src / OpenGl / OpenGl_StencilTest.cxx
1 // Created on: 2013-09-26
2 // Created by: Dmitry BOBYLEV
3 // Copyright (c) 2013-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 #include <OpenGl_GlCore11.hxx>
17 #include <OpenGl_StencilTest.hxx>
18 #include <Standard_Dump.hxx>
19
20 OpenGl_StencilTest::OpenGl_StencilTest()
21 {
22   //
23 }
24
25 // =======================================================================
26 // function : Render
27 // purpose  :
28 // =======================================================================
29 void OpenGl_StencilTest::Render (const Handle(OpenGl_Workspace)&) const
30 {
31   if (myIsEnabled)
32   {
33     glEnable (GL_STENCIL_TEST);
34     glStencilFunc (GL_NOTEQUAL, 1, 0xFF);
35   }
36   else
37   {
38     glDisable (GL_STENCIL_TEST);
39   }
40 }
41
42 // =======================================================================
43 // function : Release
44 // purpose  :
45 // =======================================================================
46 void OpenGl_StencilTest::Release (OpenGl_Context*)
47 {
48   //
49 }
50
51 // =======================================================================
52 // function : SetStencilTestState
53 // purpose  :
54 // =======================================================================
55 void OpenGl_StencilTest::SetOptions (const Standard_Boolean theIsEnabled)
56 {
57   myIsEnabled = theIsEnabled;
58 }
59
60 // =======================================================================
61 // function : ~OpenGl_StencilTest
62 // purpose  :
63 // =======================================================================
64 OpenGl_StencilTest::~OpenGl_StencilTest()
65 {
66   //
67 }
68
69 // =======================================================================
70 // function : DumpJson
71 // purpose  :
72 // =======================================================================
73 void OpenGl_StencilTest::DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth) const
74 {
75   OCCT_DUMP_CLASS_BEGIN (theOStream, OpenGl_StencilTest)
76
77   OCCT_DUMP_BASE_CLASS (theOStream, theDepth, OpenGl_Element)
78   OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, myIsEnabled)
79 }