diff options
author | Thomas White <taw@physics.org> | 2010-03-10 12:14:25 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2010-03-10 12:14:25 +0100 |
commit | bda63e5f6eeed249f0effb4f990e887b3912dad6 (patch) | |
tree | 42070462d4c14d9e3b2cdc657a12c1f374d8d9c3 /src/diffraction-gpu.h | |
parent | fd8f9222599951749edf3c6ba27289da04d84b82 (diff) |
Allow multiple sinc LUTs
Diffstat (limited to 'src/diffraction-gpu.h')
-rw-r--r-- | src/diffraction-gpu.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/diffraction-gpu.h b/src/diffraction-gpu.h index c0ab15e3..a8bd5cfb 100644 --- a/src/diffraction-gpu.h +++ b/src/diffraction-gpu.h @@ -23,23 +23,23 @@ struct gpu_context; #if HAVE_OPENCL -extern void get_diffraction_gpu(struct gpu_context *gctx, struct image *image); +extern void get_diffraction_gpu(struct gpu_context *gctx, struct image *image, + int na, int nb, int nc); extern struct gpu_context *setup_gpu(int no_sfac, struct image *image, - struct molecule *molecule, - int na, int nb, int nc); + struct molecule *molecule); extern void cleanup_gpu(struct gpu_context *gctx); #else -static void get_diffraction_gpu(struct gpu_context *gctx, struct image *image) +static void get_diffraction_gpu(struct gpu_context *gctx, struct image *image, + int na, int nb, int nc) { /* Do nothing */ ERROR("This copy of CrystFEL was not compiled with OpenCL support.\n"); } static struct gpu_context *setup_gpu(int no_sfac, struct image *image, - struct molecule *molecule, - int na, int nb, int nc) + struct molecule *molecule { return NULL; } |