VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkTreeCompositer.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 00016 // This software and ancillary information known as vtk_ext (and 00017 // herein called "SOFTWARE") is made available under the terms 00018 // described below. The SOFTWARE has been approved for release with 00019 // associated LA_CC Number 99-44, granted by Los Alamos National 00020 // Laboratory in July 1999. 00021 // 00022 // Unless otherwise indicated, this SOFTWARE has been authored by an 00023 // employee or employees of the University of California, operator of 00024 // the Los Alamos National Laboratory under Contract No. W-7405-ENG-36 00025 // with the United States Department of Energy. 00026 // 00027 // The United States Government has rights to use, reproduce, and 00028 // distribute this SOFTWARE. The public may copy, distribute, prepare 00029 // derivative works and publicly display this SOFTWARE without charge, 00030 // provided that this Notice and any statement of authorship are 00031 // reproduced on all copies. 00032 // 00033 // Neither the U. S. Government, the University of California, nor the 00034 // Advanced Computing Laboratory makes any warranty, either express or 00035 // implied, nor assumes any liability or responsibility for the use of 00036 // this SOFTWARE. 00037 // 00038 // If SOFTWARE is modified to produce derivative works, such modified 00039 // SOFTWARE should be clearly marked, so as not to confuse it with the 00040 // version available from Los Alamos National Laboratory. 00041 00042 00059 #ifndef __vtkTreeCompositer_h 00060 #define __vtkTreeCompositer_h 00061 00062 #include "vtkRenderingParallelModule.h" // For export macro 00063 #include "vtkCompositer.h" 00064 00065 00066 class VTKRENDERINGPARALLEL_EXPORT vtkTreeCompositer : public vtkCompositer 00067 { 00068 public: 00069 static vtkTreeCompositer *New(); 00070 vtkTypeMacro(vtkTreeCompositer,vtkCompositer); 00071 void PrintSelf(ostream& os, vtkIndent indent); 00072 00073 virtual void CompositeBuffer(vtkDataArray *pBuf, vtkFloatArray *zBuf, 00074 vtkDataArray *pTmp, vtkFloatArray *zTmp); 00075 00076 protected: 00077 vtkTreeCompositer(); 00078 ~vtkTreeCompositer(); 00079 00080 private: 00081 vtkTreeCompositer(const vtkTreeCompositer&); // Not implemented 00082 void operator=(const vtkTreeCompositer&); // Not implemented 00083 }; 00084 00085 #endif