xref: /freebsd/lib/libvgl/bitmap.c (revision a2f733abcff64628b7771a47089628b7327a88bd)
19a57b7d2SSøren Schmidt /*-
25e53a4f9SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
35e53a4f9SPedro F. Giffuni  *
4bf3f9db6SUlrich Spörlein  * Copyright (c) 1991-1997 Søren Schmidt
59a57b7d2SSøren Schmidt  * All rights reserved.
69a57b7d2SSøren Schmidt  *
79a57b7d2SSøren Schmidt  * Redistribution and use in source and binary forms, with or without
89a57b7d2SSøren Schmidt  * modification, are permitted provided that the following conditions
99a57b7d2SSøren Schmidt  * are met:
109a57b7d2SSøren Schmidt  * 1. Redistributions of source code must retain the above copyright
119a57b7d2SSøren Schmidt  *    notice, this list of conditions and the following disclaimer,
129a57b7d2SSøren Schmidt  *    in this position and unchanged.
139a57b7d2SSøren Schmidt  * 2. Redistributions in binary form must reproduce the above copyright
149a57b7d2SSøren Schmidt  *    notice, this list of conditions and the following disclaimer in the
159a57b7d2SSøren Schmidt  *    documentation and/or other materials provided with the distribution.
169a57b7d2SSøren Schmidt  * 3. The name of the author may not be used to endorse or promote products
1721dc7d4fSJens Schweikhardt  *    derived from this software without specific prior written permission.
189a57b7d2SSøren Schmidt  *
199a57b7d2SSøren Schmidt  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
209a57b7d2SSøren Schmidt  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
219a57b7d2SSøren Schmidt  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
229a57b7d2SSøren Schmidt  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
239a57b7d2SSøren Schmidt  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
249a57b7d2SSøren Schmidt  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
259a57b7d2SSøren Schmidt  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
269a57b7d2SSøren Schmidt  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
279a57b7d2SSøren Schmidt  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
289a57b7d2SSøren Schmidt  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
299a57b7d2SSøren Schmidt  */
309a57b7d2SSøren Schmidt 
319a57b7d2SSøren Schmidt #include <sys/types.h>
329a57b7d2SSøren Schmidt #include <signal.h>
3300d25f51SPoul-Henning Kamp #include <sys/fbio.h>
349a57b7d2SSøren Schmidt #include "vgl.h"
359a57b7d2SSøren Schmidt 
365acf51eaSKazutaka YOKOTA #define min(x, y)	(((x) < (y)) ? (x) : (y))
375acf51eaSKazutaka YOKOTA 
389a57b7d2SSøren Schmidt static byte mask[8] = {0xff, 0x7f, 0x3f, 0x1f, 0x0f, 0x07, 0x03, 0x01};
399a57b7d2SSøren Schmidt static int color2bit[16] = {0x00000000, 0x00000001, 0x00000100, 0x00000101,
409a57b7d2SSøren Schmidt 			    0x00010000, 0x00010001, 0x00010100, 0x00010101,
419a57b7d2SSøren Schmidt 			    0x01000000, 0x01000001, 0x01000100, 0x01000101,
429a57b7d2SSøren Schmidt 			    0x01010000, 0x01010001, 0x01010100, 0x01010101};
439a57b7d2SSøren Schmidt 
449a57b7d2SSøren Schmidt static void
WriteVerticalLine(VGLBitmap * dst,int x,int y,int width,byte * line)459a57b7d2SSøren Schmidt WriteVerticalLine(VGLBitmap *dst, int x, int y, int width, byte *line)
469a57b7d2SSøren Schmidt {
47*2f5cff37SBruce Evans   int bwidth, i, pos, last, planepos, start_offset, end_offset, offset;
485acf51eaSKazutaka YOKOTA   int len;
499a57b7d2SSøren Schmidt   unsigned int word = 0;
509a57b7d2SSøren Schmidt   byte *address;
515acf51eaSKazutaka YOKOTA   byte *VGLPlane[4];
529a57b7d2SSøren Schmidt 
539a57b7d2SSøren Schmidt   switch (dst->Type) {
549a57b7d2SSøren Schmidt   case VIDBUF4:
555acf51eaSKazutaka YOKOTA   case VIDBUF4S:
569a57b7d2SSøren Schmidt     start_offset = (x & 0x07);
579a57b7d2SSøren Schmidt     end_offset = (x + width) & 0x07;
58*2f5cff37SBruce Evans     bwidth = (width + start_offset) / 8;
595acf51eaSKazutaka YOKOTA     if (end_offset)
60*2f5cff37SBruce Evans 	bwidth++;
615acf51eaSKazutaka YOKOTA     VGLPlane[0] = VGLBuf;
62*2f5cff37SBruce Evans     VGLPlane[1] = VGLPlane[0] + bwidth;
63*2f5cff37SBruce Evans     VGLPlane[2] = VGLPlane[1] + bwidth;
64*2f5cff37SBruce Evans     VGLPlane[3] = VGLPlane[2] + bwidth;
659a57b7d2SSøren Schmidt     pos = 0;
669a57b7d2SSøren Schmidt     planepos = 0;
675acf51eaSKazutaka YOKOTA     last = 8 - start_offset;
689a57b7d2SSøren Schmidt     while (pos < width) {
699a57b7d2SSøren Schmidt       word = 0;
709a57b7d2SSøren Schmidt       while (pos < last && pos < width)
719a57b7d2SSøren Schmidt 	word = (word<<1) | color2bit[line[pos++]&0x0f];
729a57b7d2SSøren Schmidt       VGLPlane[0][planepos] = word;
739a57b7d2SSøren Schmidt       VGLPlane[1][planepos] = word>>8;
749a57b7d2SSøren Schmidt       VGLPlane[2][planepos] = word>>16;
759a57b7d2SSøren Schmidt       VGLPlane[3][planepos] = word>>24;
769a57b7d2SSøren Schmidt       planepos++;
775acf51eaSKazutaka YOKOTA       last += 8;
789a57b7d2SSøren Schmidt     }
799a57b7d2SSøren Schmidt     planepos--;
809a57b7d2SSøren Schmidt     if (end_offset) {
819a57b7d2SSøren Schmidt       word <<= (8 - end_offset);
829a57b7d2SSøren Schmidt       VGLPlane[0][planepos] = word;
839a57b7d2SSøren Schmidt       VGLPlane[1][planepos] = word>>8;
849a57b7d2SSøren Schmidt       VGLPlane[2][planepos] = word>>16;
859a57b7d2SSøren Schmidt       VGLPlane[3][planepos] = word>>24;
869a57b7d2SSøren Schmidt     }
875acf51eaSKazutaka YOKOTA     outb(0x3ce, 0x01); outb(0x3cf, 0x00);		/* set/reset enable */
885acf51eaSKazutaka YOKOTA     outb(0x3ce, 0x08); outb(0x3cf, 0xff);		/* bit mask */
899a57b7d2SSøren Schmidt     for (i=0; i<4; i++) {
909a57b7d2SSøren Schmidt       outb(0x3c4, 0x02);
919a57b7d2SSøren Schmidt       outb(0x3c5, 0x01<<i);
929a57b7d2SSøren Schmidt       outb(0x3ce, 0x04);
939a57b7d2SSøren Schmidt       outb(0x3cf, i);
945acf51eaSKazutaka YOKOTA       pos = VGLAdpInfo.va_line_width*y + x/8;
955acf51eaSKazutaka YOKOTA       if (dst->Type == VIDBUF4) {
969a57b7d2SSøren Schmidt 	if (end_offset)
975acf51eaSKazutaka YOKOTA 	  VGLPlane[i][planepos] |= dst->Bitmap[pos+planepos] & mask[end_offset];
985acf51eaSKazutaka YOKOTA 	if (start_offset)
995acf51eaSKazutaka YOKOTA 	  VGLPlane[i][0] |= dst->Bitmap[pos] & ~mask[start_offset];
100*2f5cff37SBruce Evans 	bcopy(&VGLPlane[i][0], dst->Bitmap + pos, bwidth);
1015acf51eaSKazutaka YOKOTA       } else {	/* VIDBUF4S */
1025acf51eaSKazutaka YOKOTA 	if (end_offset) {
1035acf51eaSKazutaka YOKOTA 	  offset = VGLSetSegment(pos + planepos);
1045acf51eaSKazutaka YOKOTA 	  VGLPlane[i][planepos] |= dst->Bitmap[offset] & mask[end_offset];
1055acf51eaSKazutaka YOKOTA 	}
1065acf51eaSKazutaka YOKOTA 	offset = VGLSetSegment(pos);
1075acf51eaSKazutaka YOKOTA 	if (start_offset)
1085acf51eaSKazutaka YOKOTA 	  VGLPlane[i][0] |= dst->Bitmap[offset] & ~mask[start_offset];
109*2f5cff37SBruce Evans 	for (last = bwidth; ; ) {
1105acf51eaSKazutaka YOKOTA 	  len = min(VGLAdpInfo.va_window_size - offset, last);
111*2f5cff37SBruce Evans 	  bcopy(&VGLPlane[i][bwidth - last], dst->Bitmap + offset, len);
1125acf51eaSKazutaka YOKOTA 	  pos += len;
1135acf51eaSKazutaka YOKOTA 	  last -= len;
1145acf51eaSKazutaka YOKOTA 	  if (last <= 0)
1155acf51eaSKazutaka YOKOTA 	    break;
1165acf51eaSKazutaka YOKOTA 	  offset = VGLSetSegment(pos);
1175acf51eaSKazutaka YOKOTA 	}
1185acf51eaSKazutaka YOKOTA       }
1199a57b7d2SSøren Schmidt     }
1209a57b7d2SSøren Schmidt     break;
1219a57b7d2SSøren Schmidt   case VIDBUF8X:
1225acf51eaSKazutaka YOKOTA     address = dst->Bitmap + VGLAdpInfo.va_line_width * y + x/4;
1239a57b7d2SSøren Schmidt     for (i=0; i<4; i++) {
1249a57b7d2SSøren Schmidt       outb(0x3c4, 0x02);
1255e7a62b2SKazutaka YOKOTA       outb(0x3c5, 0x01 << ((x + i)%4));
1265e7a62b2SKazutaka YOKOTA       for (planepos=0, pos=i; pos<width; planepos++, pos+=4)
1279a57b7d2SSøren Schmidt         address[planepos] = line[pos];
1285e7a62b2SKazutaka YOKOTA       if ((x + i)%4 == 3)
1295e7a62b2SKazutaka YOKOTA 	++address;
1309a57b7d2SSøren Schmidt     }
1319a57b7d2SSøren Schmidt     break;
1325acf51eaSKazutaka YOKOTA   case VIDBUF8S:
133933d455fSNicolas Souchu   case VIDBUF16S:
134933d455fSNicolas Souchu   case VIDBUF24S:
135933d455fSNicolas Souchu   case VIDBUF32S:
136933d455fSNicolas Souchu     width = width * dst->PixelBytes;
137933d455fSNicolas Souchu     pos = (dst->VXsize * y + x) * dst->PixelBytes;
138933d455fSNicolas Souchu     while (width > 0) {
139933d455fSNicolas Souchu       offset = VGLSetSegment(pos);
140933d455fSNicolas Souchu       i = min(VGLAdpInfo.va_window_size - offset, width);
141933d455fSNicolas Souchu       bcopy(line, dst->Bitmap + offset, i);
142933d455fSNicolas Souchu       line += i;
143933d455fSNicolas Souchu       pos += i;
144933d455fSNicolas Souchu       width -= i;
145933d455fSNicolas Souchu     }
146933d455fSNicolas Souchu     break;
1479a57b7d2SSøren Schmidt   case MEMBUF:
148b8e788b6SBruce Evans   case VIDBUF8:
149933d455fSNicolas Souchu   case VIDBUF16:
150933d455fSNicolas Souchu   case VIDBUF24:
151933d455fSNicolas Souchu   case VIDBUF32:
152933d455fSNicolas Souchu     address = dst->Bitmap + (dst->VXsize * y + x) * dst->PixelBytes;
153933d455fSNicolas Souchu     bcopy(line, address, width * dst->PixelBytes);
154933d455fSNicolas Souchu     break;
1559a57b7d2SSøren Schmidt   default:
156a96d3de6SGarrett Wollman     ;
1579a57b7d2SSøren Schmidt   }
1589a57b7d2SSøren Schmidt }
1599a57b7d2SSøren Schmidt 
1609a57b7d2SSøren Schmidt int
__VGLBitmapCopy(VGLBitmap * src,int srcx,int srcy,VGLBitmap * dst,int dstx,int dsty,int width,int hight)1619a57b7d2SSøren Schmidt __VGLBitmapCopy(VGLBitmap *src, int srcx, int srcy,
1629a57b7d2SSøren Schmidt 	      VGLBitmap *dst, int dstx, int dsty, int width, int hight)
1639a57b7d2SSøren Schmidt {
164a07067eaSBruce Evans   byte *buffer, *p;
165a07067eaSBruce Evans   int mousemerge, srcline, dstline, yend, yextra, ystep;
1669a57b7d2SSøren Schmidt 
167a07067eaSBruce Evans   mousemerge = 0;
168a07067eaSBruce Evans   if (hight < 0) {
169a07067eaSBruce Evans     hight = -hight;
170a07067eaSBruce Evans     mousemerge = (dst == VGLDisplay &&
171a07067eaSBruce Evans 		  VGLMouseOverlap(dstx, dsty, width, hight));
172a07067eaSBruce Evans     if (mousemerge)
173a07067eaSBruce Evans       buffer = alloca(width*src->PixelBytes);
174a07067eaSBruce Evans   }
1755acf51eaSKazutaka YOKOTA   if (srcx>src->VXsize || srcy>src->VYsize
1765acf51eaSKazutaka YOKOTA 	|| dstx>dst->VXsize || dsty>dst->VYsize)
1779a57b7d2SSøren Schmidt     return -1;
1789a57b7d2SSøren Schmidt   if (srcx < 0) {
1799a57b7d2SSøren Schmidt     width=width+srcx; dstx-=srcx; srcx=0;
1809a57b7d2SSøren Schmidt   }
1819a57b7d2SSøren Schmidt   if (srcy < 0) {
1829a57b7d2SSøren Schmidt     hight=hight+srcy; dsty-=srcy; srcy=0;
1839a57b7d2SSøren Schmidt   }
1849a57b7d2SSøren Schmidt   if (dstx < 0) {
1859a57b7d2SSøren Schmidt     width=width+dstx; srcx-=dstx; dstx=0;
1869a57b7d2SSøren Schmidt   }
1879a57b7d2SSøren Schmidt   if (dsty < 0) {
1889a57b7d2SSøren Schmidt     hight=hight+dsty; srcy-=dsty; dsty=0;
1899a57b7d2SSøren Schmidt   }
1905acf51eaSKazutaka YOKOTA   if (srcx+width > src->VXsize)
1915acf51eaSKazutaka YOKOTA      width=src->VXsize-srcx;
1925acf51eaSKazutaka YOKOTA   if (srcy+hight > src->VYsize)
1935acf51eaSKazutaka YOKOTA      hight=src->VYsize-srcy;
1945acf51eaSKazutaka YOKOTA   if (dstx+width > dst->VXsize)
1955acf51eaSKazutaka YOKOTA      width=dst->VXsize-dstx;
1965acf51eaSKazutaka YOKOTA   if (dsty+hight > dst->VYsize)
1975acf51eaSKazutaka YOKOTA      hight=dst->VYsize-dsty;
1989a57b7d2SSøren Schmidt   if (width < 0 || hight < 0)
1999a57b7d2SSøren Schmidt      return -1;
2001e4abf1dSBruce Evans   yend = srcy + hight;
2011e4abf1dSBruce Evans   yextra = 0;
2021e4abf1dSBruce Evans   ystep = 1;
2031e4abf1dSBruce Evans   if (src->Bitmap == dst->Bitmap && srcy < dsty) {
20471819202SBruce Evans     yend = srcy - 1;
2051e4abf1dSBruce Evans     yextra = hight - 1;
2061e4abf1dSBruce Evans     ystep = -1;
2071e4abf1dSBruce Evans   }
2081e4abf1dSBruce Evans   for (srcline = srcy + yextra, dstline = dsty + yextra; srcline != yend;
2091e4abf1dSBruce Evans        srcline += ystep, dstline += ystep) {
210a07067eaSBruce Evans     p = src->Bitmap+(srcline*src->VXsize+srcx)*dst->PixelBytes;
211a07067eaSBruce Evans     if (mousemerge && VGLMouseOverlap(dstx, dstline, width, 1)) {
212a07067eaSBruce Evans       bcopy(p, buffer, width*src->PixelBytes);
213a07067eaSBruce Evans       p = buffer;
214a07067eaSBruce Evans       VGLMouseMerge(dstx, dstline, width, p);
215a07067eaSBruce Evans     }
216a07067eaSBruce Evans     WriteVerticalLine(dst, dstx, dstline, width, p);
2179a57b7d2SSøren Schmidt   }
2189a57b7d2SSøren Schmidt   return 0;
2199a57b7d2SSøren Schmidt }
2209a57b7d2SSøren Schmidt 
2219a57b7d2SSøren Schmidt int
VGLBitmapCopy(VGLBitmap * src,int srcx,int srcy,VGLBitmap * dst,int dstx,int dsty,int width,int hight)2229a57b7d2SSøren Schmidt VGLBitmapCopy(VGLBitmap *src, int srcx, int srcy,
2239a57b7d2SSøren Schmidt 	      VGLBitmap *dst, int dstx, int dsty, int width, int hight)
2249a57b7d2SSøren Schmidt {
225a07067eaSBruce Evans   int error;
2269a57b7d2SSøren Schmidt 
227a07067eaSBruce Evans   if (hight < 0)
228a07067eaSBruce Evans     return -1;
2291fa51420SBruce Evans   if (src == VGLDisplay)
2301fa51420SBruce Evans     src = &VGLVDisplay;
231014ddcbcSBruce Evans   if (src->Type != MEMBUF)
2321fa51420SBruce Evans     return -1;		/* invalid */
2331fa51420SBruce Evans   if (dst == VGLDisplay) {
234c7432537SBruce Evans     VGLMouseFreeze();
235a07067eaSBruce Evans     __VGLBitmapCopy(src, srcx, srcy, &VGLVDisplay, dstx, dsty, width, hight);
236c7432537SBruce Evans     error = __VGLBitmapCopy(src, srcx, srcy, &VGLVDisplay, dstx, dsty,
237c7432537SBruce Evans                             width, hight);
238a07067eaSBruce Evans     if (error != 0)
239c7432537SBruce Evans       return error;
2401fa51420SBruce Evans     src = &VGLVDisplay;
2411fa51420SBruce Evans     srcx = dstx;
2421fa51420SBruce Evans     srcy = dsty;
2431fa51420SBruce Evans   } else if (dst->Type != MEMBUF)
2441fa51420SBruce Evans     return -1;		/* invalid */
245a07067eaSBruce Evans   error = __VGLBitmapCopy(src, srcx, srcy, dst, dstx, dsty, width, -hight);
246a07067eaSBruce Evans   if (dst == VGLDisplay)
2479a57b7d2SSøren Schmidt     VGLMouseUnFreeze();
2489a57b7d2SSøren Schmidt   return error;
2499a57b7d2SSøren Schmidt }
2509a57b7d2SSøren Schmidt 
2515acf51eaSKazutaka YOKOTA VGLBitmap
VGLBitmapCreate(int type,int xsize,int ysize,byte * bits)2525acf51eaSKazutaka YOKOTA *VGLBitmapCreate(int type, int xsize, int ysize, byte *bits)
2535acf51eaSKazutaka YOKOTA {
2545acf51eaSKazutaka YOKOTA   VGLBitmap *object;
2555acf51eaSKazutaka YOKOTA 
2565acf51eaSKazutaka YOKOTA   if (type != MEMBUF)
2575acf51eaSKazutaka YOKOTA     return NULL;
2585acf51eaSKazutaka YOKOTA   if (xsize < 0 || ysize < 0)
2595acf51eaSKazutaka YOKOTA     return NULL;
2605acf51eaSKazutaka YOKOTA   object = (VGLBitmap *)malloc(sizeof(*object));
2615acf51eaSKazutaka YOKOTA   if (object == NULL)
2625acf51eaSKazutaka YOKOTA     return NULL;
2635acf51eaSKazutaka YOKOTA   object->Type = type;
2645acf51eaSKazutaka YOKOTA   object->Xsize = xsize;
2655acf51eaSKazutaka YOKOTA   object->Ysize = ysize;
2665acf51eaSKazutaka YOKOTA   object->VXsize = xsize;
2675acf51eaSKazutaka YOKOTA   object->VYsize = ysize;
2685acf51eaSKazutaka YOKOTA   object->Xorigin = 0;
2695acf51eaSKazutaka YOKOTA   object->Yorigin = 0;
2705acf51eaSKazutaka YOKOTA   object->Bitmap = bits;
271fbc6daa1SBruce Evans   object->PixelBytes = VGLDisplay->PixelBytes;
2725acf51eaSKazutaka YOKOTA   return object;
2735acf51eaSKazutaka YOKOTA }
2745acf51eaSKazutaka YOKOTA 
2755acf51eaSKazutaka YOKOTA void
VGLBitmapDestroy(VGLBitmap * object)2765acf51eaSKazutaka YOKOTA VGLBitmapDestroy(VGLBitmap *object)
2775acf51eaSKazutaka YOKOTA {
2785acf51eaSKazutaka YOKOTA   if (object->Bitmap)
2795acf51eaSKazutaka YOKOTA     free(object->Bitmap);
2805acf51eaSKazutaka YOKOTA   free(object);
2815acf51eaSKazutaka YOKOTA }
2825acf51eaSKazutaka YOKOTA 
2835acf51eaSKazutaka YOKOTA int
VGLBitmapAllocateBits(VGLBitmap * object)2845acf51eaSKazutaka YOKOTA VGLBitmapAllocateBits(VGLBitmap *object)
2855acf51eaSKazutaka YOKOTA {
286fbc6daa1SBruce Evans   object->Bitmap = malloc(object->VXsize*object->VYsize*object->PixelBytes);
2875acf51eaSKazutaka YOKOTA   if (object->Bitmap == NULL)
2885acf51eaSKazutaka YOKOTA     return -1;
2895acf51eaSKazutaka YOKOTA   return 0;
2905acf51eaSKazutaka YOKOTA }
291a93ca07aSBruce Evans 
292a93ca07aSBruce Evans void
VGLBitmapCvt(VGLBitmap * src,VGLBitmap * dst)293a93ca07aSBruce Evans VGLBitmapCvt(VGLBitmap *src, VGLBitmap *dst)
294a93ca07aSBruce Evans {
295a93ca07aSBruce Evans   u_long color;
296a93ca07aSBruce Evans   int dstpos, i, pb, size, srcpb, srcpos;
297a93ca07aSBruce Evans 
298a93ca07aSBruce Evans   size = src->VXsize * src->VYsize;
299a93ca07aSBruce Evans   srcpb = src->PixelBytes;
300a93ca07aSBruce Evans   if (srcpb <= 0)
301a93ca07aSBruce Evans     srcpb = 1;
302a93ca07aSBruce Evans   pb = dst->PixelBytes;
303a93ca07aSBruce Evans   if (pb == srcpb) {
304a93ca07aSBruce Evans     bcopy(src->Bitmap, dst->Bitmap, size * pb);
305a93ca07aSBruce Evans     return;
306a93ca07aSBruce Evans   }
307a93ca07aSBruce Evans   if (srcpb != 1)
308a93ca07aSBruce Evans     return;		/* not supported */
309a93ca07aSBruce Evans   for (srcpos = dstpos = 0; srcpos < size; srcpos++) {
310a93ca07aSBruce Evans     color = VGLrgb332ToNative(src->Bitmap[srcpos]);
311a93ca07aSBruce Evans     for (i = 0; i < pb; i++, color >>= 8)
312a93ca07aSBruce Evans         dst->Bitmap[dstpos++] = color;
313a93ca07aSBruce Evans   }
314a93ca07aSBruce Evans }
315