aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.me.uk>2019-02-22 23:24:22 +0100
committerThomas White <taw@bitwiz.me.uk>2019-02-22 23:24:22 +0100
commite38820b6adb2be0dafabd517026fd7f8571107b2 (patch)
treefea9d8327e7994bce988648e76a2e59942ec40c7 /src
parentaee387068f5b9013687250e8d655b56a0c5776f2 (diff)
Fundamentals of rendering
Diffstat (limited to 'src')
-rw-r--r--src/pdfstorycode.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pdfstorycode.c b/src/pdfstorycode.c
index 04d2b82..a0d9115 100644
--- a/src/pdfstorycode.c
+++ b/src/pdfstorycode.c
@@ -66,6 +66,7 @@ static int render_slides_to_pdf(Presentation *p, const char *filename)
double log_w, log_h;
s = presentation_slide(p, i);
+ describe_slide(s);
slide_get_logical_size(s, &log_w, &log_h);
cairo_pdf_surface_set_size(surf, w, w*(log_h/log_w));