---------------------------------------------------------------------------------------- Constructor
| 51 | //---------------------------------------------------------------------------------------- |
| 52 | // Constructor |
| 53 | CCudaCglsAlgorithm3D::CCudaCglsAlgorithm3D() |
| 54 | : m_bBuffersInitialized(false), |
| 55 | m_iGPUIndex(-1), |
| 56 | D_projData(nullptr), |
| 57 | D_volData(nullptr), |
| 58 | D_w(nullptr), |
| 59 | D_z(nullptr), |
| 60 | D_r(nullptr), |
| 61 | D_p(nullptr), |
| 62 | D_volMaskData(nullptr) |
| 63 | { |
| 64 | |
| 65 | } |
| 66 | |
| 67 | //---------------------------------------------------------------------------------------- |
| 68 | // Constructor with initialization |
nothing calls this directly
no outgoing calls
no test coverage detected