00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef __mitkCUDAValueBasedStateControl_h
00011 #define __mitkCUDAValueBasedStateControl_h
00012
00013 #include "mitkCUDAVolumeRenderingIncludes.h"
00014
00015 #define NUM_OF_CONS 256
00016
00017 class MITK_CUDA_VOLUME_RENDERING_API mitkCUDAValueBasedStateControl
00018 {
00019 public:
00020 mitkCUDAValueBasedStateControl();
00021 ~mitkCUDAValueBasedStateControl();
00022
00023 int m_maxLayer;
00024 int* m_d_less_more;
00025 float* m_d_value;
00026
00027 float m_ThicknessThresh;
00028
00029 void CopyToDevice(int* less_more, float* value);
00030
00031 };
00032
00033 #endif