bits2pixels.h revision 6df26cac
1/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/vmware/bits2pixels.h,v 1.2 2002/12/11 17:07:58 dawes Exp $ */ 2/* ********************************************************** 3 * Copyright (C) 1999-2001 VMware, Inc. 4 * All Rights Reserved 5 * Id: bits2pixels.h,v 1.4 2001/01/26 23:32:15 yoel Exp $ 6 * **********************************************************/ 7 8/* 9 * bits2pixels.h -- 10 * 11 * Drawing emulation routines 12 */ 13 14#ifndef _BITS2PIXELS_H_ 15#define _BITS2PIXELS_H_ 16 17#define INCLUDE_ALLOW_USERLEVEL 18#include "includeCheck.h" 19 20void 21vmwareRaster_BitsToPixels(uint8 *bits, uint32 bits_increment, 22 uint8 *pix, uint32 pix_increment, int bytes_per_pixel, 23 uint32 width, uint32 height, uint32 fg, uint32 bg); 24 25#endif /* _BITS4PIXELS_H_ */ 26