]> git.mxchange.org Git - simgear.git/blob - simgear/canvas/VGInitOperation.cxx
Off-by-one error in the OSG_VERSION_LESS_THAN macro
[simgear.git] / simgear / canvas / VGInitOperation.cxx
1 // osg::Operation to initialize the OpenVG context used for path rendering
2 //
3 // Copyright (C) 2012  Thomas Geymayer <tomgey@gmail.com>
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Library General Public
7 // License as published by the Free Software Foundation; either
8 // version 2 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // Library General Public License for more details.
14 //
15 // You should have received a copy of the GNU Library General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA
18
19 #include "VGInitOperation.hxx"
20 #include <vg/openvg.h>
21
22 namespace simgear
23 {
24 namespace canvas
25 {
26
27   //----------------------------------------------------------------------------
28   VGInitOperation::VGInitOperation():
29     GraphicsOperation("canvas::VGInit", false)
30   {
31
32   }
33
34
35   //----------------------------------------------------------------------------
36   void VGInitOperation::operator()(osg::GraphicsContext* context)
37   {
38     GLint vp[4];
39     glGetIntegerv(GL_VIEWPORT, vp);
40
41     // ATTENTION: If using another OpenVG implementation ensure it doesn't
42     //            change any OpenGL state!
43     vgCreateContextSH(vp[2], vp[3]);
44   }
45
46 } // namespace canvas
47 } // namespace simgear