00001 /*========================================================================= 00002 00003 Program: 3DMed 00004 Date: $Date: 2014-02-25 18:30:00 +0800 $ 00005 Version: $Version: 4.6.0 $ 00006 Copyright: MIPG, Institute of Automation, Chinese Academy of Sciences 00007 00008 =========================================================================*/ 00009 00010 #ifndef _mitkVR_PBO_h 00011 #define _mitkVR_PBO_h 00012 00013 #include "mitkVisualization2Includes.h" 00014 00015 class MITK_VISUALIZATION2_API mitkVR_PBO 00016 { 00017 public: 00018 unsigned m_pbo; 00019 00020 mitkVR_PBO(int Size[2]); 00021 ~mitkVR_PBO(); 00022 00023 void Render(const int Size[2], const int Origin[2]) const; 00024 00025 }; 00026 00027 #endif