[310] | 1 | #pragma once |
---|
[346] | 2 | |
---|
| 3 | /* osgVisual test. distortionNG, experimental. |
---|
| 4 | * |
---|
| 5 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
---|
| 6 | * of this software and associated documentation files (the "Software"), to deal |
---|
| 7 | * in the Software without restriction, including without limitation the rights |
---|
| 8 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
---|
| 9 | * copies of the Software, and to permit persons to whom the Software is |
---|
| 10 | * furnished to do so, subject to the following conditions: |
---|
| 11 | * |
---|
| 12 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
---|
| 13 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
---|
| 14 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
---|
| 15 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
---|
| 16 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
---|
| 17 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
---|
| 18 | * THE SOFTWARE. |
---|
| 19 | */ |
---|
| 20 | |
---|
| 21 | |
---|
[310] | 22 | #include<osgViewer/Viewer> |
---|
| 23 | |
---|
| 24 | class extViewer : public osgViewer::Viewer |
---|
| 25 | { |
---|
| 26 | public: |
---|
[311] | 27 | extViewer(); |
---|
| 28 | |
---|
| 29 | extViewer(osg::ArgumentParser& arguments); |
---|
| 30 | |
---|
| 31 | extViewer(const osgViewer::Viewer& viewer, const osg::CopyOp& copyop=osg::CopyOp::SHALLOW_COPY); |
---|
| 32 | |
---|
| 33 | virtual ~extViewer(); |
---|
| 34 | |
---|
| 35 | /** Convenience method for projection on curved screens using a slave camera rendering scene and a second camera doing distortion correction to present on a nonplaner display.*/ |
---|
[315] | 36 | void setUpViewForManualDistortion(unsigned int screenNum=0, osg::Image* intensityMap=0, const osg::Matrixd& projectorMatrix = osg::Matrixd()); |
---|
[341] | 37 | |
---|
| 38 | void setUpIntensityMapBlending(osg::StateSet* stateset, osg::Image* intensityMap, unsigned int screenNum=0, int rttSceneTextureUnit=0, int intensityMapTextureUnit=1); |
---|
[310] | 39 | }; |
---|