about summary refs log tree commit diff
path: root/lib/ppmdraw.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ppmdraw.h')
-rw-r--r--lib/ppmdraw.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/ppmdraw.h b/lib/ppmdraw.h
index 11c8857d..080e4c62 100644
--- a/lib/ppmdraw.h
+++ b/lib/ppmdraw.h
@@ -33,6 +33,12 @@ ppmd_makePoint(int const x,
     return p;
 }
 
+void
+ppmd_validateCoord(int const c);
+
+void
+ppmd_validatePoint(ppmd_point const p);
+
 typedef enum {
     PPMD_PATHLEG_LINE
 } ppmd_pathlegtype;
@@ -317,6 +323,18 @@ ppmd_fill(pixel **         const pixels,
 /* Text drawing routines. */
 
 void
+ppmd_textp(pixel**        const pixels, 
+           int            const cols, 
+           int            const rows, 
+           pixval         const maxval, 
+           ppmd_point     const pos,
+           int            const height, 
+           int            const angle, 
+           const char *   const sArg, 
+           ppmd_drawprocp       drawProc,
+           const void *   const clientdata);
+
+void
 ppmd_text(pixel**       const pixels, 
           int           const cols, 
           int           const rows,