mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
2029f470e8
PR: ports/6245 Submitted by: Jonathan Hanna <jh@pc-21490.bc.rogers.wave.ca>
73 lines
2.1 KiB
Plaintext
73 lines
2.1 KiB
Plaintext
--- reset_image.H.orig Tue Jul 16 10:59:50 1996
|
|
+++ reset_image.H Tue Apr 7 15:34:33 1998
|
|
@@ -16,15 +16,24 @@
|
|
// to access data beyond the allocated image, that might lead to a segmentation
|
|
// violation. Therefore, it might be good to allocated some additional
|
|
// rows of data for the image.
|
|
- offset_bytes=xwidth*offset_rows*sizeof(DATA_TYPE);
|
|
- xdata=new DATA_TYPE[xwidth*(xheight+2*offset_rows)];
|
|
+
|
|
+ extern int scanline_pad;
|
|
+
|
|
+ int byte_pad = scanline_pad / 8;
|
|
+
|
|
+ offset_bytes=xwidth*offset_rows*DATA_BYTES;
|
|
+ // xdata=new DATA_TYPE[xwidth*(xheight+2*offset_rows)];
|
|
+
|
|
+ xdata=(DATA_TYPE*)new char[DATA_BYTES*xwidth*(xheight+2*offset_rows)];
|
|
{ DATA_TYPE *xdata_run=xdata;
|
|
unsigned long blk_pixel=BlackPixel(dpy,scr);
|
|
for (int i=xwidth*(xheight+2*offset_rows);i>0;i--) {
|
|
- *xdata_run++=(DATA_TYPE)blk_pixel;
|
|
+ // *xdata_run++=(DATA_TYPE)blk_pixel;
|
|
+ *xdata_run=(DATA_TYPE)blk_pixel; // align fault
|
|
+ ((char *)xdata_run) += DATA_BYTES;
|
|
}
|
|
}
|
|
- xdata+=(offset_bytes/sizeof(DATA_TYPE));
|
|
+ xdata+=(offset_bytes/DATA_BYTES);
|
|
|
|
if (!xdata) {
|
|
fprintf(stderr,"not enough memory for XImage-data");
|
|
@@ -32,9 +41,11 @@
|
|
}
|
|
|
|
// create the XImage
|
|
+
|
|
ximage = XCreateImage(dpy, DefaultVisual(dpy,scr),
|
|
- DefaultDepth(dpy,scr), ZPixmap, 0,
|
|
- (char*)xdata, xwidth, xheight, 8*DATA_PAD, xwidth*sizeof(DATA_TYPE));
|
|
+ DefaultDepth(dpy,scr), ZPixmap, 0,
|
|
+ (char*)xdata, xwidth, xheight, scanline_pad,
|
|
+ ((xwidth*DATA_BYTES + byte_pad - 1)/byte_pad) * byte_pad);
|
|
|
|
if (!ximage) {
|
|
fprintf(stderr,"\n*** can't allocate ximage.\n" );
|
|
@@ -47,9 +58,23 @@
|
|
register const byte *org = Data();
|
|
register int j,i;
|
|
|
|
- for (i=0; i<Height(); i++) {
|
|
- for (j=0; j<Width(); j++)
|
|
- *copy++ = (DATA_TYPE)gif_cols[*org++];
|
|
+ extern int pixmap_depth;
|
|
+
|
|
+ switch(pixmap_depth) {
|
|
+ case 8: // power of two covered by basic data type
|
|
+ case 16:
|
|
+ case 32:
|
|
+ for (i=0; i<Height(); i++) {
|
|
+ for (j=0; j<Width(); j++)
|
|
+ *copy++ = (DATA_TYPE)gif_cols[*org++];
|
|
+ }
|
|
+ break;
|
|
+ case 24:
|
|
+ for (i=0; i<Height(); i++) {
|
|
+ for (j=0; j<Width(); j++)
|
|
+ XPutPixel(ximage,j,i,gif_cols[*org++]);
|
|
+ }
|
|
+ break;
|
|
}
|
|
}
|
|
else {
|