You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.1 KiB
26 lines
1.1 KiB
/****************************************************************************/
|
|
/* */
|
|
/* The FreeType project -- a free and portable quality TrueType renderer. */
|
|
/* */
|
|
/* Copyright 1996-1999 by */
|
|
/* D. Turner, R.Wilhelm, and W. Lemberg */
|
|
/* */
|
|
/* blitter.h: Support for blitting of bitmaps with various depth. */
|
|
/* */
|
|
/****************************************************************************/
|
|
|
|
#ifndef GRBLIT_H
|
|
#define GRBLIT_H
|
|
|
|
#include "grobjs.h"
|
|
|
|
int grBlitMono( grBitmap* target,
|
|
grBitmap* source,
|
|
int x_offset,
|
|
int y_offset,
|
|
grColor color );
|
|
|
|
|
|
#endif /* GRBLIT_H */
|
|
/* End */
|