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 _mitkDepthBufferPBO_h 00011 #define _mitkDepthBufferPBO_h 00012 00013 #include "mitkVisualization2Includes.h" 00014 00015 class MITK_VISUALIZATION2_API mitkDepthBufferPBO 00016 { 00017 public: 00018 unsigned m_pbo; 00019 00020 mitkDepthBufferPBO(int Size[2]); 00021 ~mitkDepthBufferPBO(); 00022 00023 void ReadDepthBuffer(const int Size[2], const int Origin[2]) const; 00024 00025 }; 00026 00027 #endif