diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2019-04-07 10:14:21 +0200 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2019-04-07 10:14:21 +0200 |
commit | d18ff51704483d36c6228368f5b49f20940c64fc (patch) | |
tree | 320610abef7ea6d5a69e95e72f329c4eda1881d7 | |
parent | 3ce796a8edc883cf713b2f47e47df943085d5af7 (diff) | |
parent | ac9820a2f69963e70eb41a7c1cf23431b4282fc9 (diff) | |
download | monitors.lv2-d18ff51704483d36c6228368f5b49f20940c64fc.tar.xz |
Merge commit 'ac9820a2f69963e70eb41a7c1cf23431b4282fc9'
-rw-r--r-- | canvas.lv2/canvas.lv2/idisp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/canvas.lv2/canvas.lv2/idisp.h b/canvas.lv2/canvas.lv2/idisp.h index afe7371..099ab2c 100644 --- a/canvas.lv2/canvas.lv2/idisp.h +++ b/canvas.lv2/canvas.lv2/idisp.h @@ -44,7 +44,7 @@ _lv2_canvas_idisp_surf_init(LV2_Canvas_Idisp *idisp, int w, int h) LV2_Inline_Display_Image_Surface *surf = &idisp->image_surface; surf->width = w; - surf->height = w > h ? h : w; // try to use 1:1 ratio + surf->height = h; surf->stride = cairo_format_stride_for_width(CAIRO_FORMAT_ARGB32, surf->width); surf->data = realloc(surf->data, surf->stride * surf->height); if(!surf->data) @@ -113,7 +113,7 @@ lv2_canvas_idisp_surf_configure(LV2_Canvas_Idisp *idisp, W = w; H = w / aspect_ratio; } - else // aspect_ratio == 0.f + else // aspect_ratio == 1.f { W = w; H = h; |