bits2pixels.h revision 6df26cac
16df26cacSmrg/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/vmware/bits2pixels.h,v 1.2 2002/12/11 17:07:58 dawes Exp $ */
26df26cacSmrg/* **********************************************************
36df26cacSmrg * Copyright (C) 1999-2001 VMware, Inc.
46df26cacSmrg * All Rights Reserved
56df26cacSmrg * Id: bits2pixels.h,v 1.4 2001/01/26 23:32:15 yoel Exp $
66df26cacSmrg * **********************************************************/
76df26cacSmrg
86df26cacSmrg/*
96df26cacSmrg * bits2pixels.h --
106df26cacSmrg *
116df26cacSmrg *      Drawing emulation routines
126df26cacSmrg */
136df26cacSmrg
146df26cacSmrg#ifndef _BITS2PIXELS_H_
156df26cacSmrg#define _BITS2PIXELS_H_
166df26cacSmrg
176df26cacSmrg#define INCLUDE_ALLOW_USERLEVEL
186df26cacSmrg#include "includeCheck.h"
196df26cacSmrg
206df26cacSmrgvoid
216df26cacSmrgvmwareRaster_BitsToPixels(uint8 *bits, uint32 bits_increment,
226df26cacSmrg			  uint8 *pix, uint32 pix_increment, int bytes_per_pixel,
236df26cacSmrg			  uint32 width, uint32 height, uint32 fg, uint32 bg);
246df26cacSmrg
256df26cacSmrg#endif /* _BITS4PIXELS_H_ */
26