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