0027606: Visualization - view is blocking when MSAA has been overridden in graphics...
[occt.git] / src / OpenGl / OpenGl_Caps.cxx
CommitLineData
58655684 1// Created on: 2013-08-25
2// Created by: Kirill GAVRILOV
d5f74e42 3// Copyright (c) 2013-2014 OPEN CASCADE SAS
58655684 4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
58655684 6//
d5f74e42 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
973c2be1 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.
58655684 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
58655684 15
16#include <OpenGl_Caps.hxx>
17
8625ef7e 18#include <OpenGl_GlCore20.hxx>
19
58655684 20
92efcf78 21IMPLEMENT_STANDARD_RTTIEXT(OpenGl_Caps,Standard_Transient)
22
58655684 23// =======================================================================
24// function : OpenGl_Caps
25// purpose :
26// =======================================================================
27OpenGl_Caps::OpenGl_Caps()
a577aaab 28: vboDisable (Standard_False),
29 pntSpritesDisable (Standard_False),
392ac980 30 keepArrayData (Standard_False),
8625ef7e 31#if !defined(GL_ES_VERSION_2_0)
32 ffpEnable (Standard_True),
c3282ec1 33 useSystemBuffer (Standard_False),
8625ef7e 34#else
35 ffpEnable (Standard_False),
c3282ec1 36 useSystemBuffer (Standard_True),
8625ef7e 37#endif
f978241f 38 swapInterval (1),
25b97fac 39 buffersNoSwap (Standard_False),
abe46077 40 contextStereo (Standard_False),
0797d9d3 41#ifdef OCCT_DEBUG
fcdbe201 42 contextDebug (Standard_True),
c87535af 43 contextSyncDebug (Standard_True),
fcdbe201 44#else
abe46077 45 contextDebug (Standard_False),
c87535af 46 contextSyncDebug (Standard_False),
fcdbe201 47#endif
e276548b 48 contextNoAccel (Standard_False),
4e1523ef 49#if !defined(GL_ES_VERSION_2_0)
50 contextCompatible (Standard_True),
51#else
52 contextCompatible (Standard_False),
53#endif
c87535af 54 glslWarnings (Standard_False),
55 suppressExtraMsg (Standard_True)
58655684 56{
57 //
58}
59
60// =======================================================================
61// function : operator=
62// purpose :
63// =======================================================================
64OpenGl_Caps& OpenGl_Caps::operator= (const OpenGl_Caps& theCopy)
65{
a577aaab 66 vboDisable = theCopy.vboDisable;
67 pntSpritesDisable = theCopy.pntSpritesDisable;
392ac980 68 keepArrayData = theCopy.keepArrayData;
8625ef7e 69 ffpEnable = theCopy.ffpEnable;
c3282ec1 70 useSystemBuffer = theCopy.useSystemBuffer;
f978241f 71 swapInterval = theCopy.swapInterval;
25b97fac 72 buffersNoSwap = theCopy.buffersNoSwap;
abe46077 73 contextStereo = theCopy.contextStereo;
a577aaab 74 contextDebug = theCopy.contextDebug;
c87535af 75 contextSyncDebug = theCopy.contextSyncDebug;
abe46077 76 contextNoAccel = theCopy.contextNoAccel;
4e1523ef 77 contextCompatible = theCopy.contextCompatible;
392ac980 78 glslWarnings = theCopy.glslWarnings;
c87535af 79 suppressExtraMsg = theCopy.suppressExtraMsg;
58655684 80 return *this;
81}
82
83// =======================================================================
84// function : ~OpenGl_Caps
85// purpose :
86// =======================================================================
87OpenGl_Caps::~OpenGl_Caps()
88{
89 //
90}