VTK
vtkRenderWindow.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkRenderWindow.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
41 #ifndef vtkRenderWindow_h
42 #define vtkRenderWindow_h
43 
44 #include "vtkRenderingCoreModule.h" // For export macro
45 #include "vtkWindow.h"
46 #include "vtkNew.h" // For vtkNew
47 
48 class vtkFloatArray;
49 class vtkProp;
50 class vtkCollection;
51 class vtkRenderTimerLog;
53 class vtkRenderer;
56 
57 // lets define the different types of stereo
58 #define VTK_STEREO_CRYSTAL_EYES 1
59 #define VTK_STEREO_RED_BLUE 2
60 #define VTK_STEREO_INTERLACED 3
61 #define VTK_STEREO_LEFT 4
62 #define VTK_STEREO_RIGHT 5
63 #define VTK_STEREO_DRESDEN 6
64 #define VTK_STEREO_ANAGLYPH 7
65 #define VTK_STEREO_CHECKERBOARD 8
66 #define VTK_STEREO_SPLITVIEWPORT_HORIZONTAL 9
67 #define VTK_STEREO_FAKE 10
68 
69 #define VTK_CURSOR_DEFAULT 0
70 #define VTK_CURSOR_ARROW 1
71 #define VTK_CURSOR_SIZENE 2
72 #define VTK_CURSOR_SIZENW 3
73 #define VTK_CURSOR_SIZESW 4
74 #define VTK_CURSOR_SIZESE 5
75 #define VTK_CURSOR_SIZENS 6
76 #define VTK_CURSOR_SIZEWE 7
77 #define VTK_CURSOR_SIZEALL 8
78 #define VTK_CURSOR_HAND 9
79 #define VTK_CURSOR_CROSSHAIR 10
80 
81 class VTKRENDERINGCORE_EXPORT vtkRenderWindow : public vtkWindow
82 {
83 public:
84  vtkTypeMacro(vtkRenderWindow,vtkWindow);
85  void PrintSelf(ostream& os, vtkIndent indent) override;
86 
92  static vtkRenderWindow *New();
93 
97  virtual void AddRenderer(vtkRenderer *);
98 
102  void RemoveRenderer(vtkRenderer *);
103 
107  int HasRenderer(vtkRenderer *);
108 
112  static const char *GetRenderLibrary();
113 
117  virtual const char *GetRenderingBackend();
118 
123 
124 
127  vtkRendererCollection *GetRenderers() {return this->Renderers;};
128 
136  void CaptureGL2PSSpecialProps(vtkCollection *specialProps);
137 
139 
142  vtkGetMacro(CapturingGL2PSSpecialProps, int);
144 
149  void Render() override;
150 
154  virtual void Start() = 0;
155 
159  virtual void Finalize() = 0;
160 
165  virtual void Frame() = 0;
166 
171  virtual void WaitForCompletion()=0;
172 
177  virtual void CopyResultFrame();
178 
184  virtual vtkRenderWindowInteractor *MakeRenderWindowInteractor();
185 
187 
193  virtual void HideCursor() = 0;
194  virtual void ShowCursor() = 0;
195  virtual void SetCursorPosition(int , int ) {}
197 
199 
202  vtkSetMacro(CurrentCursor,int);
203  vtkGetMacro(CurrentCursor,int);
205 
207 
210  virtual void SetFullScreen(vtkTypeBool) = 0;
211  vtkGetMacro(FullScreen,vtkTypeBool);
212  vtkBooleanMacro(FullScreen,vtkTypeBool);
214 
216 
221  vtkSetMacro(Borders,vtkTypeBool);
222  vtkGetMacro(Borders,vtkTypeBool);
223  vtkBooleanMacro(Borders,vtkTypeBool);
225 
227 
231  vtkGetMacro(StereoCapableWindow,vtkTypeBool);
232  vtkBooleanMacro(StereoCapableWindow,vtkTypeBool);
233  virtual void SetStereoCapableWindow(vtkTypeBool capable);
235 
237 
240  vtkGetMacro(StereoRender,vtkTypeBool);
241  void SetStereoRender(vtkTypeBool stereo);
242  vtkBooleanMacro(StereoRender,vtkTypeBool);
244 
246 
249  vtkSetMacro(AlphaBitPlanes, vtkTypeBool);
250  vtkGetMacro(AlphaBitPlanes, vtkTypeBool);
251  vtkBooleanMacro(AlphaBitPlanes, vtkTypeBool);
253 
255 
259  vtkSetMacro(PointSmoothing,vtkTypeBool);
260  vtkGetMacro(PointSmoothing,vtkTypeBool);
261  vtkBooleanMacro(PointSmoothing,vtkTypeBool);
263 
265 
269  vtkSetMacro(LineSmoothing,vtkTypeBool);
270  vtkGetMacro(LineSmoothing,vtkTypeBool);
271  vtkBooleanMacro(LineSmoothing,vtkTypeBool);
273 
275 
279  vtkSetMacro(PolygonSmoothing,vtkTypeBool);
280  vtkGetMacro(PolygonSmoothing,vtkTypeBool);
281  vtkBooleanMacro(PolygonSmoothing,vtkTypeBool);
283 
285 
303  vtkGetMacro(StereoType,int);
304  void SetStereoType(int);
306  {this->SetStereoType(VTK_STEREO_CRYSTAL_EYES);}
308  {this->SetStereoType(VTK_STEREO_RED_BLUE);}
310  {this->SetStereoType(VTK_STEREO_INTERLACED);}
312  {this->SetStereoType(VTK_STEREO_LEFT);}
314  {this->SetStereoType(VTK_STEREO_RIGHT);}
316  {this->SetStereoType(VTK_STEREO_DRESDEN);}
318  {this->SetStereoType(VTK_STEREO_ANAGLYPH);}
320  {this->SetStereoType(VTK_STEREO_CHECKERBOARD);}
322  {this->SetStereoType(VTK_STEREO_SPLITVIEWPORT_HORIZONTAL);}
324  {this->SetStereoType(VTK_STEREO_FAKE);}
326 
327  const char *GetStereoTypeAsString();
328 
333  virtual void StereoUpdate();
334 
339  virtual void StereoMidpoint();
340 
345  virtual void StereoRenderComplete();
346 
348 
355  vtkSetClampMacro(AnaglyphColorSaturation,float, 0.0f, 1.0f);
356  vtkGetMacro(AnaglyphColorSaturation,float);
358 
360 
374  vtkSetVector2Macro(AnaglyphColorMask,int);
375  vtkGetVectorMacro(AnaglyphColorMask,int,2);
377 
383  virtual void WindowRemap() = 0;
384 
386 
389  vtkSetMacro(SwapBuffers,vtkTypeBool);
390  vtkGetMacro(SwapBuffers,vtkTypeBool);
391  vtkBooleanMacro(SwapBuffers,vtkTypeBool);
393 
395 
407  virtual int SetPixelData(int x, int y, int x2, int y2, unsigned char *data,
408  int front, int right=0) = 0;
409  virtual int SetPixelData(int x, int y, int x2, int y2,
410  vtkUnsignedCharArray *data, int front, int right=0) = 0;
412 
414 
421  virtual float *GetRGBAPixelData(int x, int y, int x2, int y2, int front, int right=0) = 0;
422  virtual int GetRGBAPixelData(int x, int y, int x2, int y2, int front,
423  vtkFloatArray *data, int right=0) = 0;
424  virtual int SetRGBAPixelData(int x, int y, int x2, int y2, float *,
425  int front, int blend=0, int right=0) = 0;
426  virtual int SetRGBAPixelData(int, int, int, int, vtkFloatArray*,
427  int, int blend=0, int right=0) = 0;
428  virtual void ReleaseRGBAPixelData(float *data) = 0;
429  virtual unsigned char *GetRGBACharPixelData(int x, int y, int x2, int y2,
430  int front, int right=0) = 0;
431  virtual int GetRGBACharPixelData(int x, int y, int x2, int y2, int front,
432  vtkUnsignedCharArray *data, int right=0) = 0;
433  virtual int SetRGBACharPixelData(int x,int y, int x2, int y2,
434  unsigned char *data, int front,
435  int blend=0, int right=0) = 0;
436  virtual int SetRGBACharPixelData(int x, int y, int x2, int y2,
437  vtkUnsignedCharArray *data, int front,
438  int blend=0, int right=0) = 0;
440 
442 
447  virtual float *GetZbufferData(int x, int y, int x2, int y2) = 0;
448  virtual int GetZbufferData(int x, int y, int x2, int y2, float *z) = 0;
449  virtual int GetZbufferData(int x, int y, int x2, int y2,
450  vtkFloatArray *z) = 0;
451  virtual int SetZbufferData(int x, int y, int x2, int y2, float *z) = 0;
452  virtual int SetZbufferData(int x, int y, int x2, int y2,
453  vtkFloatArray *z) = 0;
454  float GetZbufferDataAtPoint(int x, int y)
455  {
456  float value;
457  this->GetZbufferData(x, y, x, y, &value);
458  return value;
459  }
461 
463 
466  vtkGetMacro(NeverRendered,int);
468 
470 
474  vtkGetMacro(AbortRender,int);
475  vtkSetMacro(AbortRender,int);
476  vtkGetMacro(InAbortCheck,int);
477  vtkSetMacro(InAbortCheck,int);
478  virtual int CheckAbortStatus();
480 
481  vtkGetMacro(IsPicking,vtkTypeBool);
482  vtkSetMacro(IsPicking,vtkTypeBool);
483  vtkBooleanMacro(IsPicking,vtkTypeBool);
484 
491  virtual int GetEventPending() = 0;
492 
496  virtual int CheckInRenderStatus() { return this->InRender; }
497 
501  virtual void ClearInRenderStatus() { this->InRender = 0; }
502 
504 
512  virtual void SetDesiredUpdateRate(double);
513  vtkGetMacro(DesiredUpdateRate,double);
515 
517 
523  vtkGetMacro(NumberOfLayers, int);
524  vtkSetClampMacro(NumberOfLayers, int, 1, VTK_INT_MAX);
526 
528 
531  vtkGetObjectMacro(Interactor,vtkRenderWindowInteractor);
533 
537  void SetInteractor(vtkRenderWindowInteractor *);
538 
543  void UnRegister(vtkObjectBase *o) override;
544 
546 
549  void SetDisplayId(void *) override = 0;
550  void SetWindowId(void *) override = 0;
551  virtual void SetNextWindowId(void *) = 0;
552  void SetParentId(void *) override = 0;
553  void *GetGenericDisplayId() override = 0;
554  void *GetGenericWindowId() override = 0;
555  void *GetGenericParentId() override = 0;
556  void *GetGenericContext() override = 0;
557  void *GetGenericDrawable() override = 0;
558  void SetWindowInfo(const char *) override = 0;
559  virtual void SetNextWindowInfo(const char *) = 0;
560  void SetParentInfo(const char *) override = 0;
562 
567  virtual bool InitializeFromCurrentContext() { return false; };
568 
570 
577  virtual void SetSharedRenderWindow(vtkRenderWindow *);
578  vtkGetObjectMacro(SharedRenderWindow, vtkRenderWindow);
579  virtual bool GetPlatformSupportsRenderWindowSharing() { return false; };
581 
586  void MakeCurrent() override = 0;
587 
592  virtual bool IsCurrent()=0;
593 
600  virtual bool IsDrawable(){ return true; }
601 
607  virtual void SetForceMakeCurrent() {}
608 
612  virtual const char *ReportCapabilities() { return "Not Implemented";};
613 
617  virtual int SupportsOpenGL() { return 0;};
618 
622  virtual int IsDirect() { return 0;};
623 
628  virtual int GetDepthBufferSize() = 0;
629 
634  virtual int GetColorBufferSizes(int *rgba) = 0;
635 
637 
640  vtkSetMacro(MultiSamples,int);
641  vtkGetMacro(MultiSamples,int);
643 
645 
648  vtkSetMacro(StencilCapable, vtkTypeBool);
649  vtkGetMacro(StencilCapable, vtkTypeBool);
650  vtkBooleanMacro(StencilCapable, vtkTypeBool);
652 
654 
660  vtkSetMacro(DeviceIndex,int);
661  vtkGetMacro(DeviceIndex,int);
663 
667  virtual int GetNumberOfDevices()
668  {
669  return 0;
670  }
671 
680  virtual int SetUseOffScreenBuffers(bool) { return 0; }
681  virtual bool GetUseOffScreenBuffers() { return false; }
682 
684 
688  vtkGetMacro(UseSRGBColorSpace, bool);
689  vtkSetMacro(UseSRGBColorSpace, bool);
690  vtkBooleanMacro(UseSRGBColorSpace, bool);
692 
693 protected:
694  vtkRenderWindow();
695  ~vtkRenderWindow() override;
696 
697  virtual void DoStereoRender();
698 
703  int OldScreen[5];
712  unsigned char* StereoBuffer; // used for red blue stereo
713  float *AccumulationBuffer; // used for many techniques
715  unsigned char *ResultFrame;
720  int InRender;
726  int AnaglyphColorMask[2];
731 
733 
738 
740 
741 private:
742  vtkRenderWindow(const vtkRenderWindow&) = delete;
743  void operator=(const vtkRenderWindow&) = delete;
744 };
745 
746 #endif
vtkRenderWindow::ResultFrame
unsigned char * ResultFrame
Definition: vtkRenderWindow.h:715
vtkRenderWindow::SharedRenderWindow
vtkRenderWindow * SharedRenderWindow
Definition: vtkRenderWindow.h:739
VTK_STEREO_RIGHT
#define VTK_STEREO_RIGHT
Definition: vtkRenderWindow.h:62
vtkRenderWindow::StereoRender
vtkTypeBool StereoRender
Definition: vtkRenderWindow.h:707
VTK_INT_MAX
#define VTK_INT_MAX
Definition: vtkType.h:159
vtkWindow::GetGenericParentId
virtual void * GetGenericParentId()=0
vtkRenderWindow::PointSmoothing
vtkTypeBool PointSmoothing
Definition: vtkRenderWindow.h:704
vtkRenderWindow::StereoBuffer
unsigned char * StereoBuffer
Definition: vtkRenderWindow.h:712
vtkRenderWindow::SwapBuffers
vtkTypeBool SwapBuffers
Definition: vtkRenderWindow.h:716
vtkRenderWindow::NeverRendered
int NeverRendered
Definition: vtkRenderWindow.h:721
vtkRenderWindow::AccumulationBufferSize
unsigned int AccumulationBufferSize
Definition: vtkRenderWindow.h:714
vtkRenderWindow::FullScreen
vtkTypeBool FullScreen
Definition: vtkRenderWindow.h:702
VTK_STEREO_RED_BLUE
#define VTK_STEREO_RED_BLUE
Definition: vtkRenderWindow.h:59
vtkWindow::SetDisplayId
virtual void SetDisplayId(void *)=0
These are window system independent methods that are used to help interface vtkWindow to native windo...
vtkX3D::value
Definition: vtkX3D.h:220
vtkRenderWindow::GetUseOffScreenBuffers
virtual bool GetUseOffScreenBuffers()
Definition: vtkRenderWindow.h:681
vtkFloatArray
dynamic, self-adjusting array of float
Definition: vtkFloatArray.h:35
vtkX3D::data
Definition: vtkX3D.h:315
vtkRenderWindow::IsPicking
vtkTypeBool IsPicking
Definition: vtkRenderWindow.h:724
vtkObject::New
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
vtkRenderWindow::SetStereoTypeToRedBlue
void SetStereoTypeToRedBlue()
Definition: vtkRenderWindow.h:307
vtkRenderWindow::SetUseOffScreenBuffers
virtual int SetUseOffScreenBuffers(bool)
Create and bind offscreen rendering buffers without destroying the current OpenGL context.
Definition: vtkRenderWindow.h:680
vtkUnsignedCharArray
dynamic, self-adjusting array of unsigned char
Definition: vtkUnsignedCharArray.h:35
vtkRenderWindow::SetStereoTypeToCheckerboard
void SetStereoTypeToCheckerboard()
Definition: vtkRenderWindow.h:319
vtkRenderWindow::GetZbufferDataAtPoint
float GetZbufferDataAtPoint(int x, int y)
Definition: vtkRenderWindow.h:454
vtkRenderWindow::InRender
int InRender
Definition: vtkRenderWindow.h:720
vtkWindow::GetGenericContext
virtual void * GetGenericContext()=0
vtkRenderWindow::Renderers
vtkRendererCollection * Renderers
Definition: vtkRenderWindow.h:699
vtkRendererCollection
an ordered list of renderers
Definition: vtkRendererCollection.h:34
vtkRenderWindow::InAbortCheck
int InAbortCheck
Definition: vtkRenderWindow.h:719
VTK_STEREO_CRYSTAL_EYES
#define VTK_STEREO_CRYSTAL_EYES
Definition: vtkRenderWindow.h:58
VTK_STEREO_SPLITVIEWPORT_HORIZONTAL
#define VTK_STEREO_SPLITVIEWPORT_HORIZONTAL
Definition: vtkRenderWindow.h:66
vtkRenderWindow::SetForceMakeCurrent
virtual void SetForceMakeCurrent()
If called, allow MakeCurrent() to skip cache-check when called.
Definition: vtkRenderWindow.h:607
vtkWindow::GetGenericDrawable
virtual void * GetGenericDrawable()=0
vtkWindow
window superclass for vtkRenderWindow
Definition: vtkWindow.h:34
vtkRenderWindow::StereoType
int StereoType
Definition: vtkRenderWindow.h:708
vtkRenderWindow::AnaglyphColorSaturation
float AnaglyphColorSaturation
Definition: vtkRenderWindow.h:725
vtkCollection
create and manipulate ordered lists of objects
Definition: vtkCollection.h:48
vtkRenderWindow::GetPlatformSupportsRenderWindowSharing
virtual bool GetPlatformSupportsRenderWindowSharing()
Definition: vtkRenderWindow.h:579
vtkRenderWindow::SetStereoTypeToAnaglyph
void SetStereoTypeToAnaglyph()
Definition: vtkRenderWindow.h:317
vtkRenderWindow::DeviceIndex
int DeviceIndex
Definition: vtkRenderWindow.h:730
vtkObjectBase
abstract base class for most VTK objects
Definition: vtkObjectBase.h:62
vtkWindow::SetWindowId
virtual void SetWindowId(void *)=0
vtkRenderWindow::CurrentCursor
int CurrentCursor
Definition: vtkRenderWindow.h:723
vtkRenderWindow::Interactor
vtkRenderWindowInteractor * Interactor
Definition: vtkRenderWindow.h:711
VTK_STEREO_INTERLACED
#define VTK_STEREO_INTERLACED
Definition: vtkRenderWindow.h:60
vtkRenderWindow::CapturingGL2PSSpecialProps
int CapturingGL2PSSpecialProps
Definition: vtkRenderWindow.h:729
VTK_STEREO_LEFT
#define VTK_STEREO_LEFT
Definition: vtkRenderWindow.h:61
vtkRenderWindow::SetStereoTypeToLeft
void SetStereoTypeToLeft()
Definition: vtkRenderWindow.h:311
vtkRenderWindow::UseSRGBColorSpace
bool UseSRGBColorSpace
Definition: vtkRenderWindow.h:732
VTK_STEREO_ANAGLYPH
#define VTK_STEREO_ANAGLYPH
Definition: vtkRenderWindow.h:64
vtkRenderWindow::StencilCapable
vtkTypeBool StencilCapable
Definition: vtkRenderWindow.h:728
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:33
vtkRenderWindow::StereoCapableWindow
vtkTypeBool StereoCapableWindow
Definition: vtkRenderWindow.h:709
vtkRenderWindow::Borders
vtkTypeBool Borders
Definition: vtkRenderWindow.h:701
vtkWindow::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkNew< vtkRenderTimerLog >
vtkWindow::Render
virtual void Render()=0
Ask each viewport owned by this Window to render its image and synchronize this process.
vtkRenderWindow::DesiredUpdateRate
double DesiredUpdateRate
Definition: vtkRenderWindow.h:717
vtkRenderWindow::ReportCapabilities
virtual const char * ReportCapabilities()
Get report of capabilities for the render window.
Definition: vtkRenderWindow.h:612
vtkRenderWindow::SetStereoTypeToRight
void SetStereoTypeToRight()
Definition: vtkRenderWindow.h:313
vtkRenderWindowInteractor
platform-independent render window interaction including picking and frame rate control.
Definition: vtkRenderWindowInteractor.h:72
vtkRenderTimerLog
Asynchronously measures GPU execution times for a series of events.
Definition: vtkRenderTimerLog.h:81
vtkRenderWindow::AbortCheckTime
double AbortCheckTime
The universal time since the last abort check occurred.
Definition: vtkRenderWindow.h:737
vtkRenderWindow::NumberOfLayers
int NumberOfLayers
Definition: vtkRenderWindow.h:722
vtkRenderWindow::GetNumberOfDevices
virtual int GetNumberOfDevices()
Returns the number of devices (graphics cards) on a system.
Definition: vtkRenderWindow.h:667
vtkProp
abstract superclass for all actors, volumes and annotations
Definition: vtkProp.h:46
vtkRenderWindow::vtkGetNewMacro
vtkGetNewMacro(RenderTimer, vtkRenderTimerLog) vtkRendererCollection *GetRenderers()
Get the render timer log for this window.
Definition: vtkRenderWindow.h:122
vtkRenderWindow::SetStereoTypeToCrystalEyes
void SetStereoTypeToCrystalEyes()
Definition: vtkRenderWindow.h:305
vtkRenderWindow::SetCursorPosition
virtual void SetCursorPosition(int, int)
Definition: vtkRenderWindow.h:195
vtkWindow::MakeCurrent
virtual void MakeCurrent()
Make the window current.
Definition: vtkWindow.h:182
vtkNew.h
VTK_STEREO_FAKE
#define VTK_STEREO_FAKE
Definition: vtkRenderWindow.h:67
vtkRenderWindow::MultiSamples
int MultiSamples
Definition: vtkRenderWindow.h:727
vtkRenderWindow::IsDrawable
virtual bool IsDrawable()
Test if the window has a valid drawable.
Definition: vtkRenderWindow.h:600
vtkRenderer
abstract specification for renderers
Definition: vtkRenderer.h:57
vtkRenderWindow::SetStereoTypeToFake
void SetStereoTypeToFake()
Definition: vtkRenderWindow.h:323
vtkRenderWindow::AccumulationBuffer
float * AccumulationBuffer
Definition: vtkRenderWindow.h:713
vtkRenderWindow::AbortRender
int AbortRender
Definition: vtkRenderWindow.h:718
vtkRenderWindow::IsDirect
virtual int IsDirect()
Is this render window using hardware acceleration? 0-false, 1-true.
Definition: vtkRenderWindow.h:622
VTK_STEREO_DRESDEN
#define VTK_STEREO_DRESDEN
Definition: vtkRenderWindow.h:63
vtkRenderWindow::SetStereoTypeToDresden
void SetStereoTypeToDresden()
Definition: vtkRenderWindow.h:315
vtkRenderWindow::SetStereoTypeToInterlaced
void SetStereoTypeToInterlaced()
Definition: vtkRenderWindow.h:309
vtkRenderWindow::SupportsOpenGL
virtual int SupportsOpenGL()
Does this render window support OpenGL? 0-false, 1-true.
Definition: vtkRenderWindow.h:617
vtkRenderWindow::AlphaBitPlanes
vtkTypeBool AlphaBitPlanes
Definition: vtkRenderWindow.h:710
vtkRenderWindow::LineSmoothing
vtkTypeBool LineSmoothing
Definition: vtkRenderWindow.h:705
vtkRenderWindow
create a window for renderers to draw into
Definition: vtkRenderWindow.h:81
vtkRenderWindow::InitializeFromCurrentContext
virtual bool InitializeFromCurrentContext()
Initialize the render window from the information associated with the currently activated OpenGL cont...
Definition: vtkRenderWindow.h:567
vtkRenderWindow::ClearInRenderStatus
virtual void ClearInRenderStatus()
Clear status (after an exception was thrown for example)
Definition: vtkRenderWindow.h:501
vtkRenderWindow::CheckInRenderStatus
virtual int CheckInRenderStatus()
Are we rendering at the moment.
Definition: vtkRenderWindow.h:496
vtkWindow::GetGenericDisplayId
virtual void * GetGenericDisplayId()=0
vtkWindow::GetGenericWindowId
virtual void * GetGenericWindowId()=0
vtkWindow::SetParentInfo
virtual void SetParentInfo(const char *)=0
vtkRenderWindow::RenderTimer
vtkNew< vtkRenderTimerLog > RenderTimer
Definition: vtkRenderWindow.h:700
vtkWindow.h
vtkObjectBase::UnRegister
virtual void UnRegister(vtkObjectBase *o)
Decrease the reference count (release by another object).
vtkTypeBool
int vtkTypeBool
Definition: vtkABI.h:69
vtkRenderWindow::PolygonSmoothing
vtkTypeBool PolygonSmoothing
Definition: vtkRenderWindow.h:706
vtkRenderWindow::SetStereoTypeToSplitViewportHorizontal
void SetStereoTypeToSplitViewportHorizontal()
Definition: vtkRenderWindow.h:321
vtkWindow::SetWindowInfo
virtual void SetWindowInfo(const char *)=0
vtkWindow::SetParentId
virtual void SetParentId(void *)=0
VTK_STEREO_CHECKERBOARD
#define VTK_STEREO_CHECKERBOARD
Definition: vtkRenderWindow.h:65