---------------------------------------------------------------------------------------- Constructor
| 39 | //---------------------------------------------------------------------------------------- |
| 40 | // Constructor |
| 41 | CCudaCglsAlgorithm::CCudaCglsAlgorithm() |
| 42 | : m_bBuffersInitialized(false), |
| 43 | D_projData(nullptr), |
| 44 | D_volData(nullptr), |
| 45 | D_z(nullptr), |
| 46 | D_p(nullptr), |
| 47 | D_r(nullptr), |
| 48 | D_w(nullptr), |
| 49 | D_volMaskData(nullptr), |
| 50 | m_fGamma(0.0f) |
| 51 | { |
| 52 | |
| 53 | } |
| 54 | |
| 55 | //---------------------------------------------------------------------------------------- |
| 56 | // Destructor |
nothing calls this directly
no outgoing calls
no test coverage detected