blob: 4d0b6e5a81543677dda77a05efd8f99db6a6de80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/****************************************************************************/
/* */
/* 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 */
|