mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
venti: fix venti graph on 64-bit
A pixel is 32 bits wide in RGBA, regardless of system's word size. Change-Id: Iea36a8dafdec9ce8d593f944ef5ed1ea08e11d25 Reviewed-on: https://plan9port-review.googlesource.com/2980 Reviewed-by: David du Colombier <0intro@gmail.com>
This commit is contained in:
parent
7e77a6a569
commit
4a8c0c75ff
2 changed files with 2 additions and 1 deletions
|
@ -35,6 +35,7 @@ Marius Eriksen <marius.eriksen@gmail.com>
|
|||
Martin Neubauer <m.ne@gmx.net>
|
||||
Mathieu Lonjaret <lejatorn@gmail.com>
|
||||
Mathieu Lonjaret <mathieu.lonjaret@gmail.com>
|
||||
Michael Stroucken <mxs@cmu.edu>
|
||||
Michael Teichgräber <mt4swm@googlemail.com>
|
||||
Michael Teichgräber <mt@ib.wmipf.de>
|
||||
Nathaniel W Filardo <nwf@cs.jhu.edu> <nwfilardo@gmail.com>
|
||||
|
|
|
@ -212,7 +212,7 @@ writepng(Hio *io, Memimage *m)
|
|||
/* image data */
|
||||
zr.dx = Dx(m->r);
|
||||
zr.dy = Dy(m->r);
|
||||
zr.width = rgb->width * sizeof(ulong);
|
||||
zr.width = rgb->width * sizeof(u32int);
|
||||
zr.data = rgb->data->bdata;
|
||||
zr.x = 0;
|
||||
zr.y = 0;
|
||||
|
|
Loading…
Reference in a new issue