summaryrefslogtreecommitdiff
path: root/include/mupdf/fitz/function.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/mupdf/fitz/function.h')
-rw-r--r--include/mupdf/fitz/function.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/mupdf/fitz/function.h b/include/mupdf/fitz/function.h
index b623172c..005cef3f 100644
--- a/include/mupdf/fitz/function.h
+++ b/include/mupdf/fitz/function.h
@@ -15,9 +15,9 @@ typedef struct fz_function_s fz_function;
void fz_eval_function(fz_context *ctx, fz_function *func, const float *in, int inlen, float *out, int outlen);
fz_function *fz_keep_function(fz_context *ctx, fz_function *func);
void fz_drop_function(fz_context *ctx, fz_function *func);
-unsigned int fz_function_size(fz_function *func);
+unsigned int fz_function_size(fz_context *ctx, fz_function *func);
#ifndef NDEBUG
-void pdf_debug_function(fz_function *func);
+void pdf_debug_function(fz_context *ctx, fz_function *func);
#endif
enum
@@ -34,7 +34,7 @@ struct fz_function_s
int n; /* number of output values */
void (*evaluate)(fz_context *ctx, fz_function *func, const float *in, float *out);
#ifndef NDEBUG
- void (*debug)(fz_function *func);
+ void (*debug)(fz_context *ctx, fz_function *func);
#endif
};