From 163996b68129f3a34db73c6a6a1e81ec8f4a81e4 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 2 Jul 2019 22:17:22 +1000 Subject: Cleanup: move comments onto own lines to avoid breaking lines --- source/blender/imbuf/intern/allocimbuf.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'source/blender/imbuf/intern/allocimbuf.c') diff --git a/source/blender/imbuf/intern/allocimbuf.c b/source/blender/imbuf/intern/allocimbuf.c index d518406124f..7d2f51af65e 100644 --- a/source/blender/imbuf/intern/allocimbuf.c +++ b/source/blender/imbuf/intern/allocimbuf.c @@ -493,11 +493,12 @@ bool IMB_initImBuf( ibuf->y = y; ibuf->planes = planes; ibuf->ftype = IMB_FTYPE_PNG; - ibuf->foptions.quality = - 15; /* the 15 means, set compression to low ratio but not time consuming */ - ibuf->channels = 4; /* float option, is set to other values when buffers get assigned */ - ibuf->ppm[0] = ibuf->ppm[1] = IMB_DPI_DEFAULT / - 0.0254f; /* IMB_DPI_DEFAULT -> pixels-per-meter */ + /* The '15' means, set compression to low ratio but not time consuming. */ + ibuf->foptions.quality = 15; + /* float option, is set to other values when buffers get assigned. */ + ibuf->channels = 4; + /* IMB_DPI_DEFAULT -> pixels-per-meter. */ + ibuf->ppm[0] = ibuf->ppm[1] = IMB_DPI_DEFAULT / 0.0254f; if (flags & IB_rect) { if (imb_addrectImBuf(ibuf) == false) { -- cgit v1.2.3