diff options
Diffstat (limited to 'cuda/2d/util.h')
-rw-r--r-- | cuda/2d/util.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cuda/2d/util.h b/cuda/2d/util.h index 3cffa08..83cb794 100644 --- a/cuda/2d/util.h +++ b/cuda/2d/util.h @@ -60,16 +60,16 @@ $Id$ namespace astraCUDA { bool copyVolumeToDevice(const float* in_data, unsigned int in_pitch, - unsigned int width, unsigned int height, + const SDimensions& dims, float* outD_data, unsigned int out_pitch); bool copyVolumeFromDevice(float* out_data, unsigned int out_pitch, - unsigned int width, unsigned int height, + const SDimensions& dims, float* inD_data, unsigned int in_pitch); bool copySinogramFromDevice(float* out_data, unsigned int out_pitch, - unsigned int width, unsigned int height, + const SDimensions& dims, float* inD_data, unsigned int in_pitch); bool copySinogramToDevice(const float* in_data, unsigned int in_pitch, - unsigned int width, unsigned int height, + const SDimensions& dims, float* outD_data, unsigned int out_pitch); bool allocateVolume(float*& D_ptr, unsigned int width, unsigned int height, unsigned int& pitch); |