diff options
author | Thomas White <taw@bitwiz.org.uk> | 2009-12-16 03:44:35 -0800 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2009-12-16 03:50:40 -0800 |
commit | 5ee02bbd3e86bb6b83a457009ed0a4b5d864dec9 (patch) | |
tree | ac8d3b940e8e6429b38bd472a7ff436e4bd8dec7 /src/render.c | |
parent | a97808a51b9e15df23307115ca889e01c604c0dc (diff) |
Fix binning
Diffstat (limited to 'src/render.c')
-rw-r--r-- | src/render.c | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/src/render.c b/src/render.c index 96e0b906..26deae91 100644 --- a/src/render.c +++ b/src/render.c @@ -114,26 +114,26 @@ GdkPixbuf *render_get_image(struct hdfile *hdfile, int binning, int boostint, /* These x,y coordinates are measured relative to the bottom-left * corner */ for ( y=0; y<h; y++ ) { - for ( x=0; x<w; x++ ) { + for ( x=0; x<w; x++ ) { - int val; - guchar r, g, b; + int val; + guchar r, g, b; - val = hdr[x+w*y]; - if ( !monochrome ) { - RENDER_RGB - } else { - RENDER_MONO - } + val = hdr[x+w*y]; + if ( !monochrome ) { + RENDER_RGB + } else { + RENDER_MONO + } - /* Stuff inside square brackets makes this pixel go to - * the expected location in the pixbuf (which measures - * from the top-left corner */ - data[3*( x+w*(h-1-y) )+0] = r; - data[3*( x+w*(h-1-y) )+1] = g; - data[3*( x+w*(h-1-y) )+2] = b; + /* Stuff inside square brackets makes this pixel go to + * the expected location in the pixbuf (which measures + * from the top-left corner */ + data[3*( x+w*(h-1-y) )+0] = r; + data[3*( x+w*(h-1-y) )+1] = g; + data[3*( x+w*(h-1-y) )+2] = b; - } + } } /* Finished with this */ |