00001 /*======================================================================= 00002 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), *** 00003 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. *** 00004 *** *** 00005 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS *** 00006 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR *** 00007 *** WRITTEN AUTHORIZATION OF FEI S.A.S. *** 00008 *** *** 00009 *** RESTRICTED RIGHTS LEGEND *** 00010 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS *** 00011 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN *** 00012 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT *** 00013 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN *** 00014 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. *** 00015 *** *** 00016 *** COPYRIGHT (C) 1996-2020 BY FEI S.A.S, *** 00017 *** BORDEAUX, FRANCE *** 00018 *** ALL RIGHTS RESERVED *** 00019 **=======================================================================*/ 00020 /*======================================================================= 00021 ** Author : VSG (MMM YYYY) 00022 **=======================================================================*/ 00023 00024 00025 #ifndef _SO_BIGIMAGE_RENDERER_ 00026 #define _SO_BIGIMAGE_RENDERER_ 00027 00028 00029 #include <Inventor/SoOffscreenRenderer.h> 00030 00032 // 00033 // Class: SoBigImageRenderer 00034 // 00035 // This file contains the definition of the SoBigImageRenderer class. 00036 // This class is used for rendering a scene graph to an offscreen memory 00037 // buffer which can be used for printing or generating textures. 00038 // Unlike the SoOffscreenRenderer class, this class allows the user 00039 // to render images biger than 2048*2048 pixels. 00040 // 00041 // This class uses an X Pixmap or Win32 bitmap for rendering. 00042 // 00044 class SoDEPRECATED SoBigImageRenderer : public SoOffscreenRenderer { 00062 00063 public : 00069 SoBigImageRenderer(const SbViewportRegion &viewportRegion); 00074 SoBigImageRenderer(SoGLRenderAction *ra); 00075 }; 00076 00077 #endif // _SO_BIGIMAGE_RENDERER_ 00078 00079