VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkOpenGLRayCastImageDisplayHelper.h 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00015 00026 #ifndef __vtkOpenGLRayCastImageDisplayHelper_h 00027 #define __vtkOpenGLRayCastImageDisplayHelper_h 00028 00029 #include "vtkRenderingVolumeOpenGLModule.h" // For export macro 00030 #include "vtkRayCastImageDisplayHelper.h" 00031 00032 class vtkVolume; 00033 class vtkRenderer; 00034 class vtkFixedPointRayCastImage; 00035 00036 class VTKRENDERINGVOLUMEOPENGL_EXPORT vtkOpenGLRayCastImageDisplayHelper 00037 : public vtkRayCastImageDisplayHelper 00038 { 00039 public: 00040 static vtkOpenGLRayCastImageDisplayHelper *New(); 00041 vtkTypeMacro(vtkOpenGLRayCastImageDisplayHelper,vtkRayCastImageDisplayHelper); 00042 virtual void PrintSelf(ostream& os, vtkIndent indent); 00043 00044 void RenderTexture( vtkVolume *vol, vtkRenderer *ren, 00045 int imageMemorySize[2], 00046 int imageViewportSize[2], 00047 int imageInUseSize[2], 00048 int imageOrigin[2], 00049 float requestedDepth, 00050 unsigned char *image ); 00051 00052 void RenderTexture( vtkVolume *vol, vtkRenderer *ren, 00053 int imageMemorySize[2], 00054 int imageViewportSize[2], 00055 int imageInUseSize[2], 00056 int imageOrigin[2], 00057 float requestedDepth, 00058 unsigned short *image ); 00059 00060 void RenderTexture( vtkVolume *vol, vtkRenderer *ren, 00061 vtkFixedPointRayCastImage *image, 00062 float requestedDepth ); 00063 00064 protected: 00065 vtkOpenGLRayCastImageDisplayHelper(); 00066 ~vtkOpenGLRayCastImageDisplayHelper(); 00067 00068 void RenderTextureInternal( vtkVolume *vol, vtkRenderer *ren, 00069 int imageMemorySize[2], 00070 int imageViewportSize[2], 00071 int imageInUseSize[2], 00072 int imageOrigin[2], 00073 float requestedDepth, 00074 int imageScalarType, 00075 void *image ); 00076 00077 private: 00078 vtkOpenGLRayCastImageDisplayHelper(const vtkOpenGLRayCastImageDisplayHelper&); // Not implemented. 00079 void operator=(const vtkOpenGLRayCastImageDisplayHelper&); // Not implemented. 00080 }; 00081 00082 #endif