blob: 0bbeac66cfa4c8ef9e3359dd858642701574014f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef __UTIL_H__
#define __UTIL_H__
extern int util_gem_create_mmap(int fd, struct drm_exynos_gem_create *gem,
struct exynos_gem_mmap_data *mmap,
unsigned int size);
extern void util_draw_buffer(void *addr, unsigned int stripe,
unsigned int width, unsigned int height,
unsigned int stride, unsigned int size);
extern int util_write_bmp(const char *file, const void *data,
unsigned int width, unsigned int height);
#endif
|