From d9c9d9a10058ed5d3e8d86d2bd11c2b6f202c1f7 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Mon, 9 Dec 2019 14:10:07 +0100 Subject: mg2d_interp tmp --- mg2d.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'mg2d.h') diff --git a/mg2d.h b/mg2d.h index 56e129f..80ef8a1 100644 --- a/mg2d.h +++ b/mg2d.h @@ -313,4 +313,22 @@ int mg2d_init_guess(MG2DContext *ctx, const double *src, const size_t src_size[2], const double src_step[2]); +int mg2d_interp_solution(MG2DContext *ctx, double *dst, + ptrdiff_t dst_stride, + const ptrdiff_t dst_start[2], + const size_t dst_size[2], + const double dst_step[2]); + +int mg2d_interp(MG2DContext *ctx, + double *dst, + ptrdiff_t dst_stride, + const ptrdiff_t dst_start[2], + const size_t dst_size[2], + const double dst_step[2], + double *src, + ptrdiff_t src_stride, + const ptrdiff_t src_start[2], + const size_t src_size[2], + const double src_step[2]); + #endif /* MG2D_H */ -- cgit v1.2.3