bits2pixels.h revision a241306c
1/* **********************************************************
2 * Copyright (C) 1999-2001 VMware, Inc.
3 * All Rights Reserved
4 * **********************************************************/
5
6/*
7 * bits2pixels.h --
8 *
9 *      Drawing emulation routines
10 */
11
12#ifndef _BITS2PIXELS_H_
13#define _BITS2PIXELS_H_
14
15#define INCLUDE_ALLOW_USERLEVEL
16#include "includeCheck.h"
17
18void
19vmwareRaster_BitsToPixels(uint8 *bits, uint32 bits_increment,
20			  uint8 *pix, uint32 pix_increment, int bytes_per_pixel,
21			  uint32 width, uint32 height, uint32 fg, uint32 bg);
22
23#endif /* _BITS4PIXELS_H_ */
24