0025282: Visualization, OpenGl_PrimitiveArray - provide built-in GLSL programs as...
[occt.git] / src / OpenGl / OpenGl_Caps.cxx
1 // Created on: 2013-08-25
2 // Created by: Kirill GAVRILOV
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_Caps.hxx>
17
18 #include <OpenGl_GlCore20.hxx>
19
20 IMPLEMENT_STANDARD_HANDLE (OpenGl_Caps, Standard_Transient)
21 IMPLEMENT_STANDARD_RTTIEXT(OpenGl_Caps, Standard_Transient)
22
23 // =======================================================================
24 // function : OpenGl_Caps
25 // purpose  :
26 // =======================================================================
27 OpenGl_Caps::OpenGl_Caps()
28 : vboDisable        (Standard_False),
29   pntSpritesDisable (Standard_False),
30   keepArrayData     (Standard_False),
31 #if !defined(GL_ES_VERSION_2_0)
32   ffpEnable         (Standard_True),
33 #else
34   ffpEnable         (Standard_False),
35 #endif
36   buffersNoSwap     (Standard_False),
37   contextStereo     (Standard_False),
38 #ifdef DEB
39   contextDebug      (Standard_True),
40 #else
41   contextDebug      (Standard_False),
42 #endif
43   contextNoAccel    (Standard_False),
44   glslWarnings      (Standard_False)
45 {
46   //
47 }
48
49 // =======================================================================
50 // function : operator=
51 // purpose  :
52 // =======================================================================
53 OpenGl_Caps& OpenGl_Caps::operator= (const OpenGl_Caps& theCopy)
54 {
55   vboDisable        = theCopy.vboDisable;
56   pntSpritesDisable = theCopy.pntSpritesDisable;
57   keepArrayData     = theCopy.keepArrayData;
58   ffpEnable         = theCopy.ffpEnable;
59   buffersNoSwap     = theCopy.buffersNoSwap;
60   contextStereo     = theCopy.contextStereo;
61   contextDebug      = theCopy.contextDebug;
62   contextNoAccel    = theCopy.contextNoAccel;
63   glslWarnings      = theCopy.glslWarnings;
64   return *this;
65 }
66
67 // =======================================================================
68 // function : ~OpenGl_Caps
69 // purpose  :
70 // =======================================================================
71 OpenGl_Caps::~OpenGl_Caps()
72 {
73   //
74 }