blob: b39be932d1ec9d679cf2c36af889fe9be0590f2d (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef _DN_ACCEL_H_
#define _DN_ACCEL_H_
#include <linux/fb.h>
void dn_bitblt(struct display *p,int x_src,int y_src, int x_dest, int y_dest,
int x_count, int y_count);
#endif
|