16df26cacSmrg/* ********************************************************** 26df26cacSmrg * Copyright (C) 1999-2001 VMware, Inc. 36df26cacSmrg * All Rights Reserved 46df26cacSmrg * **********************************************************/ 56df26cacSmrg 66df26cacSmrg/* 76df26cacSmrg * bits2pixels.h -- 86df26cacSmrg * 96df26cacSmrg * Drawing emulation routines 106df26cacSmrg */ 116df26cacSmrg 126df26cacSmrg#ifndef _BITS2PIXELS_H_ 136df26cacSmrg#define _BITS2PIXELS_H_ 146df26cacSmrg 156df26cacSmrg#define INCLUDE_ALLOW_USERLEVEL 166df26cacSmrg#include "includeCheck.h" 176df26cacSmrg 186df26cacSmrgvoid 196df26cacSmrgvmwareRaster_BitsToPixels(uint8 *bits, uint32 bits_increment, 206df26cacSmrg uint8 *pix, uint32 pix_increment, int bytes_per_pixel, 216df26cacSmrg uint32 width, uint32 height, uint32 fg, uint32 bg); 226df26cacSmrg 236df26cacSmrg#endif /* _BITS4PIXELS_H_ */ 24