From bda63e5f6eeed249f0effb4f990e887b3912dad6 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Wed, 10 Mar 2010 12:14:25 +0100 Subject: Allow multiple sinc LUTs --- src/diffraction-gpu.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/diffraction-gpu.h') 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; } -- cgit v1.2.3