diff options
author | Thomas White <taw@bitwiz.org.uk> | 2015-08-16 18:15:46 +0200 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2015-08-16 18:15:46 +0200 |
commit | 321afdd0e417c701fbf9797ccfc3fd59a86d4dc2 (patch) | |
tree | 8dc56f70c27d6e81e40f7d9585810e9f8e58906f /src/render.h | |
parent | f0b6caf6998fc4998b14e25ccc9318349ad552ad (diff) |
Top frame is created by rendering pipeline, but owned by caller
Diffstat (limited to 'src/render.h')
-rw-r--r-- | src/render.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/render.h b/src/render.h index 386df63..3938ca1 100644 --- a/src/render.h +++ b/src/render.h @@ -1,7 +1,7 @@ /* * render.h * - * Copyright © 2013-2014 Thomas White <taw@bitwiz.org.uk> + * Copyright © 2013-2015 Thomas White <taw@bitwiz.org.uk> * * This file is part of Colloquium. * @@ -30,12 +30,13 @@ #include "presentation.h" #include "imagestore.h" #include "sc_interp.h" +#include "frame.h" extern cairo_surface_t *render_sc(SCBlock *scblocks, int w, int h, double log_w, double log_h, SCBlock **stylesheets, SCCallbackList *cbl, ImageStore *is, enum is_size isz, - int slide_number); + int slide_number, struct frame **ptop); extern int export_pdf(struct presentation *p, const char *filename); |