summaryrefslogtreecommitdiff
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>2019-12-09 14:10:07 +0100
commitd3ad0d357e5586fcf21018f85bc8afc9d317ea79 (patch)
tree7c6c3a29cd78f843f406679a9c771d7f7ced634b /mg2d.h
parent3eebc8df5edb3ca82e8f726a6f2555f6d2a70dfb (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 867d77e..f7897f6 100644
--- a/mg2d.h
+++ b/mg2d.h
@@ -292,4 +292,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 */