26 lines
749 B
C
26 lines
749 B
C
/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/vmware/bits2pixels.h,v 1.2 2002/12/11 17:07:58 dawes Exp $ */
|
|
/* **********************************************************
|
|
* Copyright (C) 1999-2001 VMware, Inc.
|
|
* All Rights Reserved
|
|
* Id: bits2pixels.h,v 1.4 2001/01/26 23:32:15 yoel Exp $
|
|
* **********************************************************/
|
|
|
|
/*
|
|
* 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_ */
|