blob: 0f59782e56553663c3825f7f9bb1fce607f2ba56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef __GEM_H__
#define __GEM_H__
struct exynos_gem_mmap_data {
uint32_t handle;
uint64_t size;
uint64_t offset;
void *addr;
};
extern int exynos_gem_create(int fd, struct drm_exynos_gem_create *gem);
extern int exynos_gem_mmap(int fd, struct exynos_gem_mmap_data *in_mmap);
extern int exynos_gem_close(int fd, struct drm_gem_close *gem_close);
#endif
|