aboutsummaryrefslogtreecommitdiff
path: root/src/render.h
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2016-03-28 17:03:01 +0200
committerThomas White <taw@bitwiz.org.uk>2016-03-28 17:03:01 +0200
commit3087709f11b05b943c20436c9c64a09e09223208 (patch)
tree7e0efd326aa4f06685724b04ab836ba606a9bbbd /src/render.h
parenteb4c2a335c5b6c0b534330021effc7f3efbf1dc4 (diff)
Basic renderer using PangoLayouts
Diffstat (limited to 'src/render.h')
-rw-r--r--src/render.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/render.h b/src/render.h
index 486f129..be9bfd8 100644
--- a/src/render.h
+++ b/src/render.h
@@ -1,7 +1,7 @@
/*
* render.h
*
- * Copyright © 2013-2015 Thomas White <taw@bitwiz.org.uk>
+ * Copyright © 2013-2016 Thomas White <taw@bitwiz.org.uk>
*
* This file is part of Colloquium.
*
@@ -50,7 +50,8 @@ extern struct frame *interp_and_shape(SCBlock *scblocks, SCBlock **stylesheets,
int slide_number, cairo_t *cr,
double w, double h, PangoLanguage *lang);
-extern int recursive_wrap(struct frame *fr, ImageStore *is, enum is_size isz);
+extern void wrap_frame(struct frame *fr, PangoContext *pc);
+extern int recursive_wrap(struct frame *fr, PangoContext *pc);
extern int export_pdf(struct presentation *p, const char *filename);