aboutsummaryrefslogtreecommitdiff
path: root/mg2d.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2019-12-09 14:10:07 +0100
committerAnton Khirnov <anton@khirnov.net>2020-07-13 10:58:42 +0200
commitd9c9d9a10058ed5d3e8d86d2bd11c2b6f202c1f7 (patch)
treeceb4a00f40fe10845ea92ffc023941859e8617aa /mg2d.h
parentb06f56c959ffa4e3f3d7f0acaadcf81a93ef9fa5 (diff)
mg2d_interp tmp
Diffstat (limited to 'mg2d.h')
-rw-r--r--mg2d.h18
1 files changed, 18 insertions, 0 deletions
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 */